-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
93 lines (93 loc) · 2.02 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "mozaik-ext-jenkins",
"version": "1.2.0",
"description": "Mozaik jenkins widgets",
"repository": {
"type": "git",
"url": "git://github.com/plouc/mozaik-ext-jenkins"
},
"bugs": {
"url": "https://github.com/plouc/mozaik-ext-jenkins/issues"
},
"homepage": "https://github.com/plouc/mozaik-ext-jenkins#readme",
"license": "MIT",
"author": {
"name": "Raphaël Benitte",
"url": "https://github.com/plouc"
},
"keywords": [
"jenkins",
"hudson",
"ci",
"mozaik",
"widget",
"extension",
"dashboard"
],
"engines": {
"node": "0.12.x",
"npm": ">=3.0.0"
},
"main": "./src/components/index.js",
"dependencies": {
"babelify": "7.2.0",
"babel-core": "6.7.2",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"bluebird": "3.3.4",
"chalk": "1.1.3",
"classnames": "2.2.3",
"convict": "1.2.0",
"lodash": "4.8.1",
"moment": "2.12.0",
"moment-duration-format": "1.3.0",
"react-mixin": "3.0.4",
"reflux": "0.4.0",
"superagent": "1.8.3",
"superagent-bluebird-promise": "3.0.0"
},
"devDependencies": {
"ava": "0.13.0",
"babel-eslint": "5.0.0",
"babel-register": "6.7.2",
"coveralls": "2.11.8",
"enzyme": "2.1.0",
"eslint": "2.2.0",
"eslint-plugin-react": "4.2.2",
"mockery": "1.4.1",
"nyc": "6.1.1",
"react": "^0.13.3"
},
"peerDependencies": {
"mozaik": ">=1.1.0",
"react": "^0.13.3"
},
"scripts": {
"eslint": "eslint --ext .js --ext .jsx ./src/** ./test/**",
"test": "ava",
"test-cover": "nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"cover-report": "nyc report --reporter=lcov && open coverage/lcov-report/index.html"
},
"browserify": {
"transform": [
"babelify"
]
},
"ava": {
"files": [
"test/**/*.test.js"
],
"tap": false,
"failFast": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"extension": [
".jsx"
]
}
}