-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "governify-render",
"version": "2.3.2",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha ./tests/test.js --timeout 20000 -s 20",
"coverage": "nyc --reporter=lcov mocha ./tests/test.js --timeout 20000 -s 20",
"lint": "semistandard",
"lint-fix": "semistandard --fix",
"precommit": "semistandard --fix && nyc mocha ./tests/test.js --timeout 20000 -s 5"
},
"repository": {
"type": "git",
"url": "https://github.com/governify/render"
},
"author": {
"name": "ISA group",
"web": "http://www.isa.us.es/"
},
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/governify/render/issues"
},
"homepage": "https://github.com/governify/render#readme",
"dependencies": {
"basic-auth": "^2.0.0",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"governify-commons": "^1.17.6-0",
"helmet": "^3.23.3",
"js-yaml": "^3.14.0",
"mustache": "^4.0.1",
"path": "^0.12.7",
"winston": "^2.4.2",
"newrelic": "latest"
},
"devDependencies": {
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"semistandard": "^14.2.0"
},
"semistandard": {
"ignore": [
"/tests/**",
"/src/frontend/**"
]
},
"docker": {
"url": "https://hub.docker.com/r/governify/render"
}
}