-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.65 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
{
"name": "rhema",
"private": true,
"author": "FE",
"version": "0.8.7",
"description": "Node framework based on Express.",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover _mocha -- -R spec --bail --exit ./lib/**/tests/**/*-test.js",
"eslint": "eslint '*.js' lib --ignore-pattern 'lib/**/tests/**' --ignore-pattern 'lib/**/node_modules/**'",
"eslint:fix": "npm run eslint -- --fix --ignore-pattern 'lib/**/node_modules/**'",
"postcoverage": "rm -rf ./build && rm -rf ./coverage",
"docs": "docsify serve docs",
"posttest": "rm -rf ./build",
"test:package": "bash -c 'mocha -R min --bail --exit ./lib/${0}/tests/**/*-test.js'",
"coverage:package": "bash -c 'istanbul cover _mocha -- -R spec --bail --exit ./lib/${0}/tests/**/*-test.js'",
"findleaks": "check-for-leaks",
"lerna:build": "rm -rf node_modules && lerna clean --yes && npm install && lerna bootstrap --hoist",
"lerna:test": "lerna run test --stream",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"pre-commit": [
"findleaks",
"lerna:test"
],
"dependencies": {
"compression": "1.7.2",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"csurf": "1.9.0",
"express": "4.17.3",
"helmet": "3.21.1",
"method-override": "^3.0.0",
"node-statsd": "0.1.1",
"pug": "3.0.1",
"serve-static": "1.13.2",
"snyk": "^1.1064.0"
},
"devDependencies": {
"check-for-leaks": "1.2.0",
"docsify": "4.12.2",
"eslint": "4.19.1",
"lerna": "^3.8.4",
"pre-commit": "1.2.2",
"mocha": "10.2.0",
"istanbul": "0.4.5",
"chai": "4.2.0",
"sinon": "7.2.2"
},
"snyk": true
}