forked from heikkipora/gitlab-radiator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.22 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
{
"name": "gitlab-radiator",
"author": {
"name": "heikkipora",
"email": "[email protected]"
},
"description": "The missing GitLab build radiator view",
"version": "2.3.0",
"license": "MIT",
"bin": {
"gitlab-radiator": "bin/gitlab-radiator"
},
"scripts": {
"build": "./build-npm",
"start": "NODE_TLS_REJECT_UNAUTHORIZED=0 babel-node src/app.js",
"eslint": "eslint --fix src/* bin/* test/*",
"test": "mocha --require @babel/register --require @babel/polyfill --timeout 20000 test/*.js"
},
"engines": {
"node": ">=5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heikkipora/gitlab-radiator.git"
},
"bugs": {
"url": "https://github.com/heikkipora/gitlab-radiator/issues"
},
"homepage": "https://github.com/heikkipora/gitlab-radiator#readme",
"contributors": [
{
"name": "codegeneralist",
"email": "[email protected]"
}
],
"dependencies": {
"axios": "0.18.0",
"@babel/runtime": "7.0.0",
"basic-auth": "2.0.0",
"compression": "1.7.3",
"date-fns": "1.29.0",
"express": "4.16.3",
"js-yaml": "3.12.0",
"lodash": "4.17.10",
"react": "16.5.0",
"react-dom": "16.5.0",
"socket.io": "2.1.1"
},
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.0",
"@babel/node": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-runtime": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"babel-eslint": "9.0.0",
"babelify": "10.0.0",
"browserify": "16.2.2",
"browserify-middleware": "8.1.1",
"chai": "4.1.2",
"eslint": "5.5.0",
"eslint-plugin-mocha": "5.2.0",
"eslint-plugin-react": "7.11.1",
"less-middleware": "3.0.1",
"mocha": "5.2.0",
"uglify-js": "3.4.9"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/env",
"@babel/react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
]
]
}
}