-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
56
57
58
59
60
61
62
63
64
65
{
"name": "devops-07-cd-final",
"version": "1.0.0",
"description": "devops 07 cd final",
"main": "index.js",
"scripts": {
"start": "webpack serve ./public/main.js --mode=development",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"commit": "cz",
"build": "webpack ./src/app.js -o public/",
"prettier": "prettier -c \"src/**/*.js\"",
"prettier:fix": "prettier -w \"src/**/*.js\"",
"lint": "eslint \"src/**/*.js\"",
"lint:fix": "eslint --fix \"src/**/*.js\"",
"code:fix": "npm run prettier:fix && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlstechteaching/devops-07-cd-final.git"
},
"keywords": [
"devOps",
"tdd",
"ci",
"git"
],
"author": "dls",
"license": "ISC",
"bugs": {
"url": "https://github.com/dlstechteaching/devops-07-cd-final/issues"
},
"homepage": "https://github.com/dlstechteaching/devops-07-cd-final#readme",
"devDependencies": {
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "8.5.0",
"jest": "^29.3.1",
"prettier": "2.7.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
],
"coverageThreshold": {
"global": {
"lines": 90,
"branches": 90,
"functions": 90,
"statements": 90
}
}
}
}