-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 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
{
"name": "devops-code-challenge",
"version": "1.0.0",
"description": "Base seed project for NodeJS services",
"main": "index.js",
"repository": "https://github.com/RapidAPI/devops-code-challenge.git",
"scripts": {
"start": "node .",
"precommit": "lint-staged",
"lint": "eslint ./ --cache",
"lintfix": "eslint ./ --fix",
"test": "./node_modules/mocha/bin/mocha --recursive"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "precommit",
"author": "",
"license": "MIT",
"dependencies": {
"@newrelic/native-metrics": "2.1.1",
"body-parser": "1.17.2",
"chai": "4.0.2",
"chai-http": "3.0.0",
"cluster": "^0.7.7",
"compression": "^1.7.0",
"config": "1.26.1",
"express": "4.15.3",
"fs": "^0.0.1-security",
"joi": "^10.6.0",
"jsdoc": "3.4.3",
"mocha": "3.4.2",
"newrelic": "1.40.0",
"os": "^0.1.1",
"winston": "2.3.1",
"winston-logstash": "0.3.0",
"winston-meta-wrapper": "1.2.0"
},
"devDependencies": {
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-no-loops": "0.3.0",
"lint-staged": "3.6.1",
"pre-commit": "1.2.2"
}
}