-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
41 lines (41 loc) · 987 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "matomo-tracker",
"version": "2.2.4",
"description": "A wrapper for the Matomo tracking HTTP API",
"keywords": [
"piwik",
"matomo",
"analytics",
"tracking"
],
"homepage": "https://github.com/matomo-org/matomo-nodejs-tracker",
"bugs": "https://github.com/matomo-org/matomo-nodejs-tracker/issues",
"author": {
"name": "Frederic Hemberger",
"url": "https://github.com/matomo-org"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git://github.com/matomo-org/matomo-nodejs-tracker.git"
},
"scripts": {
"test": "npm run mocha && npm run eslint",
"mocha": "mocha --reporter spec --exit",
"eslint": "eslint --max-warnings=0 index.js test/index.test.js"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.7.0",
"mocha": "^8.1.0",
"nock": "^13.0.3",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0"
},
"engines": {
"node": ">=4.2.0"
},
"license": "MIT"
}