-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
51 lines (51 loc) · 1.02 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
{
"name": "autometer",
"version": "0.1.0",
"description": "Distributed load testing made simple",
"author": "Autometer Team",
"bin": {
"autometer": "main.js"
},
"main": "main.js",
"files": [
"main.js",
"lib"
],
"repository": {
"type": "git",
"url": "/~https://github.com/intuit/autometer"
},
"bugs": {
"url": "/~https://github.com/intuit/autometer/issues"
},
"keywords": [
"load testing",
"performance testing",
"distributed",
"jmeter",
"docker"
],
"dependencies": {
"yargs": "~10.0.3",
"shelljs": "~0.8.3",
"winston": "~2.4.0"
},
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.11",
"mocha": "^3.0.1",
"nyc": "^11.2.1",
"standard": "^8.6.0"
},
"scripts": {
"pretest": "npm install",
"posttest": "standard --fix",
"test": "nyc --reporter=text mocha --timeout=8000 --check-leaks",
"predeploy": "npm test",
"deploy": "npm install -g ."
},
"license": "MIT",
"engine": {
"node": ">=7"
}
}