-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "releasetrain",
"version": "1.0.0",
"description": "Client for managing release tracking",
"main": "src/app.js",
"scripts": {
"build": "grunt",
"dev": "http-server . --log-ip --verbose",
"prod": "npm run build && npm start",
"test": "jest --runInBand --detectOpenHandles --verbose",
"start": "http-server dist --log-ip --verbose",
"debug": "node --inspect-brk src/app.js",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/antrunner/releasetrain-client.git"
},
"keywords": [
"release",
"versioning",
"tracking",
"client"
],
"author": "berhes",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"babel-jest": "^29.7.0",
"grunt": "^1.6.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-minify-html": "^3.0.0",
"http-server": "^0.12.3",
"jest": "^29.7.0",
"eslint": "^8.56.0"
},
"dependencies": {
"@sakirtemel/plantuml.js": "^1.0.1",
"plantuml": "^0.0.2"
}
}