-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.84 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.84 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
{
"name": "jenkins-pipeline-example",
"version": "1.0.0",
"description": "Jenkins pipeline for node js application example",
"main": "index.js",
"scripts": {
"test": "gulp test",
"precommit": "gulp lint",
"prepush": "gulp test",
"start": "gulp start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silveimar/jenkins-pipeline-example.git"
},
"keywords": [
"jenkins",
"pipeline"
],
"author": "silveimar",
"license": "ISC",
"bugs": {
"url": "https://github.com/silveimar/jenkins-pipeline-example/issues"
},
"homepage": "https://github.com/silveimar/jenkins-pipeline-example#readme",
"dependencies": {
"express": "^4.15.3"
},
"babel": {
"presets": [
"babel-preset-latest",
"babel-preset-stage-0",
"babel-preset-react"
],
"plugins": [
"transform-decorators-legacy"
]
},
"devDependencies": {
"app-root-dir": "^1.0.2",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.24.1",
"chai": "^4.0.1",
"chai-as-promised": "^7.1.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"gulp": "^3.9.1",
"gulp-cli": "^1.3.0",
"gulp-concat": "^2.6.1",
"gulp-concat-vendor": "0.0.4",
"gulp-env": "^0.4.0",
"gulp-eslint": "^3.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^4.3.1",
"gulp-nodemon": "^2.2.1",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.8",
"gulp-wait": "0.0.2",
"husky": "^0.14.2",
"mocha": "^3.3.0",
"mocha-jenkins-reporter": "^0.3.8",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2"
}
}