-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
59 lines (59 loc) · 1.7 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
{
"name": "gitlab-ci-monitor",
"version": "1.0.0",
"description": "A simple dashboard for monitoring [GitLab CI][gitlab-ci] builds. **Alpha version**.",
"main": "js/app.js",
"scripts": {
"lint": "eslint .",
"start": "webpack-dev-server",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "webpack --env.mode production",
"test": "TZ=UTC jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/globocom/gitlab-ci-monitor.git"
},
"keywords": [],
"author": "Globo.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/globocom/gitlab-ci-monitor/issues"
},
"homepage": "https://github.com/globocom/gitlab-ci-monitor#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"axios-mock-adapter": "^1.15.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.3",
"regenerator-runtime": "^0.12.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": ">=3.1.11"
},
"dependencies": {
"axios": "^0.21.2",
"date-fns": "^1.29.0",
"vue": "^1.0.27"
},
"jest": {
"verbose": true,
"testURL": "http://localhost?gitlab=gitlab.test.com&token=12345&projects=namespace/project1/branch1,namespace/project2/master",
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/js/__mocks__/style-mock.js"
}
}
}