-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 919 Bytes
/
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
{
"name": "autoscale-desired-count",
"version": "1.0.0",
"description": "estimate the number of processes required to keep up with the current demand",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"jsdoc": "jsdoc-md",
"coverage": "c8 npm test",
"pretest": "semistandard",
"test": "mocha --recursive test"
},
"repository": {
"url": "noblesamurai/autoscale-desired-count",
"type": "git"
},
"author": "autoscale-desired-count <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"gaussian": "^1.1.0"
},
"devDependencies": {
"c8": "^7.7.1",
"chai": "^4.2.0",
"jsdoc-md": "^9.1.1",
"mocha": "^8.3.2",
"semistandard": "^16.0.0"
},
"c8": {
"include": [
"src"
],
"reporter": [
"lcov",
"text"
],
"all": true
},
"semistandard": {
"env": [
"mocha"
]
}
}