-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "ci-integration",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --config jestConfig.json --detectOpenHandles",
"start": "node src/start.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix "
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrentWillems/CI-integration.git"
},
"author": "Brent Willems",
"license": "ISC",
"bugs": {
"url": "https://github.com/BrentWillems/CI-integration/issues"
},
"homepage": "https://github.com/BrentWillems/CI-integration#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"husky": "^4.2.3",
"jest": "^25.2.7",
"lint-staged": "^10.1.1",
"supertest": "^4.0.2"
}
}