-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.24 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "timing2",
"version": "0.3.4",
"description": "The state-of-art web performance metrics collector based on High Resolution Time API",
"main": "lib/index.js",
"scripts": {
"ci": "cross-env NODE_ENV=test nyc mocha --timeout 100000 --bail --recursive test/ && nyc report --reporter=text-lcov | coveralls",
"test": "cross-env NODE_ENV=test nyc mocha --timeout 100000 --bail --recursive test/",
"build": ":"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debug-tips/timing2.git"
},
"keywords": [
"performance",
"metrics",
"High",
"Resolution",
"Time",
"API"
],
"author": "jasonslyvia",
"license": "MIT",
"bugs": {
"url": "https://github.com/debug-tips/timing2/issues"
},
"homepage": "https://github.com/debug-tips/timing2#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^12.0.2"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"sourceMap": true,
"instrument": true,
"extension": [
".js"
],
"include": [
"lib/index.js"
]
}
}