-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "exectimer",
"version": "2.2.2",
"description": "Very simple module to calculate block execution time.",
"license": "MIT",
"keywords": [
"time",
"timer",
"profiler",
"execution",
"performance",
"analysis",
"benchmark"
],
"homepage": "https://github.com/alexandrusavin/exectimer",
"bugs": "https://github.com/alexandrusavin/exectimer/issues",
"author": {
"name": "Alexandru Savin",
"email": "alexandrusavin@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/alexandrusavin/exectimer.git"
},
"main": "./index",
"scripts": {
"test-unit": "mocha test/unit.js",
"test-bdd": "mocha test/bdd.js",
"test-int": "mocha test/int.js",
"test-browser": "karma start",
"test": "npm run test-unit && npm run test-bdd && npm run test-int && npm run test-browser"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"async": "^2.6.0",
"babel-core": "^6.26.0",
"babel-loader": "^8.0.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"karma": "^3.1.1",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.0",
"mocha": "^5.0.0",
"sinon": "^13.0.0",
"sinon-chai": "^3.0.0",
"webpack": "^4.11.1"
},
"dependencies": {
"browser-process-hrtime": "^1.0.0",
"co": "^4.6.0"
}
}