forked from artilleryio/artillery-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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": "minigun-core",
"version": "1.2.11",
"description": "minigun-core - load-generator library used by `minigun`",
"main": "index.js",
"engines": {
"node": ">= 4.2.0"
},
"scripts": {
"test": "node test/index.js",
"is_formatted": "find . -name '*.js' | grep -v node_modules | grep -v coverage | xargs jscs --preset=google",
"is_linted": "find . -name '*.js' | grep -v node_modules | grep -v coverage | xargs eslint",
"coverage": "istanbul cover test/index.js && istanbul check-coverage"
},
"author": "Hassy Veldstra <[email protected]>",
"contributors": [
"Kieran Gorman (https://github.com/kjgorman)"
],
"license": "ISC",
"dependencies": {
"JSONPath": "0.10.0",
"arrivals": "1.0.0",
"async": "1.3.0",
"debug": "2.2.0",
"esprima": "2.5.0",
"jsck": "0.2.5",
"lodash": "3.10.0",
"measured": "1.0.0",
"mustache": "2.1.2",
"request": "2.58.0",
"traverse": "0.6.6",
"ws": "0.8.0"
},
"devDependencies": {
"eslint": "^0.24.0",
"good": "6.4.0",
"good-console": "5.1.0",
"hapi": "10.4.0",
"interfake": "^1.13.0",
"istanbul": "^0.3.17",
"nock": "^2.7.0",
"pre-commit": "^1.0.10",
"tape": "^4.0.0",
"uuid": "^2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/artilleryio/minigun-core.git"
},
"pre-commit": [
"is_linted"
]
}