-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@achannarasappa/locust-cli",
"version": "0.3.0",
"description": "Utility to develop and test locust jobs",
"repository": {
"type" : "git",
"url" : "https://github.com/achannarasappa/locust-cli.git"
},
"bin": {
"cli": "bin/cli.js"
},
"directories": {
"lib": "lib"
},
"scripts": {
"coverage": "nyc --reporter=text --reporter=lcov mocha --exit --timeout 10000 './lib/**/*.spec.js'",
"coverage:coveralls": "npm run coverage && ./node_modules/.bin/nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./lib ./test ./bin",
"lint:fix": "eslint --fix ./lib ./test ./bin",
"test": "mocha --exit --timeout 10000 './{,!(node_modules)/**/}*.spec.js'",
"test:watch": "npm run test -- --watch"
},
"author": "Ani Channarasappa",
"license": "MIT",
"devDependencies": {
"@achannarasappa/eslint-config": "^1.0.4",
"@hapi/hapi": "^18.4.0",
"@hapi/vision": "^5.5.2",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"docker-names": "^1.1.1",
"eslint": "^6.6.0",
"handlebars": "^4.5.3",
"husky": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"sinon": "^7.5.0"
},
"dependencies": {
"@achannarasappa/locust": "^1.0.0",
"@achannarasappa/locust-cli-dashboard": "^0.1.0",
"inquirer": "^6.2.1",
"ioredis": "^4.3.0",
"moment": "^2.24.0",
"prettyjson": "^1.2.1",
"puppeteer": "^2.0.0",
"ramda": "^0.26.1",
"shelljs": "^0.8.3",
"yargs": "^12.0.5"
},
"eslintConfig": {
"extends": "@achannarasappa/eslint-config",
"env": {
"mocha": true,
"node": true
},
"rules": {
"consistent-return": "off",
"no-console": "off"
}
},
"nyc": {
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"all": true,
"check-coverage": true,
"skip-full": true,
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/**/*.spec.js"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm audit"
}
}
}