-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
42
43
{
"name": "simple-tracker",
"version": "1.2.3",
"description": "Easy client-side tracking library to log events, metrics, errors, and messages",
"main": "dist/simple-tracker.min.js",
"repository": {
"type": "git",
"url": "git://github.com/codeniko/simple-tracker.git"
},
"scripts": {
"build": "grunt",
"unit-test": "ENV=tests ./node_modules/.bin/_mocha -R spec ./test/unit/**/*.js ./test/unit/**/**/*.js",
"test": "nyc --reporter=html --reporter=text npm run unit-test",
"preversion": "npm test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"author": "Nikolay Feldman",
"keywords": [
"simple tracker",
"tracker",
"track",
"instrumentation",
"i13n",
"analytics",
"log management",
"logger",
"jslogger",
"log"
],
"license": "MIT",
"devDependencies": {
"bower": "^1.8.0",
"chai": "^4.1.2",
"codecov": "^3.0.1",
"grunt": "^1.0.1",
"grunt-contrib-uglify": "^3.0.1",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.7.1",
"rewire": "^4.0.0",
"sinon": "^4.5.0"
}
}