forked from mozilla/node-convict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 805 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
{
"name": "node-convict",
"private": true,
"scripts": {
"setup": "npm ci && lerna link",
"test": "jest",
"posttest": "npm run lint",
"pretest:ci": "npm run lint",
"test:ci": "npm run test:coverage -- --coverageReporters=text-lcov | coveralls",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"devDependencies": {
"convict": "file:packages/convict",
"convict-format-with-moment": "file:packages/convict-format-with-moment",
"convict-format-with-validator": "file:packages/convict-format-with-validator",
"coveralls": "^3.1.0",
"deep-object-diff": "^1.1.0",
"eslint": "^6.8.0",
"jest": "^25.5.4",
"js-yaml": "^3.13.1",
"json5": "^2.1.3",
"lerna": "^3.20.2",
"toml": "^3.0.0"
}
}