-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "jenkins-pipeline-express",
"version": "1.0.0",
"description": "Small express application to show TDD with Jenkins 2.0 pipelines",
"main": "index.js",
"scripts": {
"pm2-start": "pm2 start -f index.js --name 'jenkins-pipeline-express'",
"pm2-stop": "pm2 stop 'jenkins-pipeline-express'",
"test": "jest"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/.vscode/**",
"!**/.git/**"
],
"coverageThreshold": {
"global": {
"functions": 25
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtaylor32/jenkins-pipeline-express.git"
},
"keywords": [
"TDD",
"jenkins",
"pipelines",
"express",
"node",
"deployment"
],
"author": "Jordan Taylor @jtaylor32",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtaylor32/jenkins-pipeline-express/issues"
},
"homepage": "https://github.com/jtaylor32/jenkins-pipeline-express#readme",
"dependencies": {
"express": "^4.14.1"
},
"devDependencies": {
"jest": "^18.1.0"
}
}