forked from mozilla/node-convict
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 761 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 761 Bytes
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
{
"name": "node-convict",
"private": true,
"scripts": {
"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 --ignore-pattern='!.*.js' .",
"lint:fix": "eslint --fix --ignore-pattern='!.*.js' ."
},
"workspaces": [
"packages/convict",
"packages/convict-format-with-validator",
"packages/convict-format-with-moment"
],
"devDependencies": {
"@lerna-lite/cli": "1.1.1",
"coveralls": "^3.1.0",
"deep-object-diff": "^1.1.0",
"eslint": "^7.26.0",
"jest": "^26.6.3",
"js-yaml": "^4.1.0",
"json5": "^2.2.0",
"toml": "^3.0.0"
}
}