-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 906 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 906 Bytes
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": "radargun",
"longName": "radargun",
"description": "A benchmark utility for Node.js.",
"version": "1.0.1",
"dependencies": {
"elv": "^2.0.0",
"glob": "^7.1.2"
},
"devDependencies": {
"chai": "~3.5.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0"
},
"keywords": [
"benchmark",
"performance",
"speed",
"analysis",
"test"
],
"bin": {
"radargun": "./bin/radargun.js"
},
"license": "MIT",
"main": "./lib",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dsfields/radargun"
},
"scripts": {
"lint": "eslint ./*",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --recursive ./test/unit"
}
}