-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.29 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.29 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "corlief",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=9.11.1"
},
"scripts": {
"start": "node index.js",
"watch": "./node_modules/.bin/nodemon",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --file ./test/prepareServer ./test/* --exit --timeout 10000 --slow 1000",
"lint": "./node_modules/.bin/eslint --ext .js .",
"gen-keys": "mkdir -p keys; ssh-keygen -t rsa -b 4096 -f ./keys/jwtRS256.key -q -N \"\";ssh-keygen -p -N \"\" -m pem -f ./keys/jwtRS256.key;openssl rsa -in ./keys/jwtRS256.key -pubout -outform PEM -out ./keys/jwtRS256.key.pub",
"production": "NODE_ENV=production node index.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sinfo/corlief.git"
},
"author": "SINFO",
"license": "ISC",
"bugs": {
"url": "https://github.com/sinfo/corlief/issues"
},
"homepage": "https://github.com/sinfo/corlief#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.1.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.1.0",
"form-data": "^2.3.2",
"mocha": "^5.2.0",
"mongodb": "^3.6.3",
"nodemon": "^1.18.1",
"pre-commit": "^1.2.2",
"stream-to-promise": "^2.2.0"
},
"dependencies": {
"@handlebars/allow-prototype-access": "^1.0.5",
"aws-sdk": "^2.814.0",
"boom": "^7.2.0",
"email-validator": "^2.0.4",
"google-auth-library": "7.0.0",
"handlebars": "^4.7.7",
"hapi": "^17.5.2",
"hapi-auth-bearer-token": "^6.2.1",
"hapi-router": "^4.0.0",
"hapi-swagger": "^9.1.1",
"inert": "^5.1.0",
"joi": "^13.4.0",
"jsonwebtoken": "^8.3.0",
"logger": "git+https://github.com/sinfo/logger.git",
"mailgun-js": "^0.21.0",
"mime-types": "^2.1.19",
"mongoose": "^5.7.5",
"prettyjson": "^1.2.1",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"snyk": "^1.316.1",
"tough-cookie": "^2.4.3",
"vision": "^5.3.3"
},
"snyk": true
}