-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "kiwotigo",
"version": "1.0.0",
"description": "a library to create world maps",
"main": "index.js",
"scripts": {
"gulp": "gulp",
"clean": "gulp clean",
"build": "gulp buildAll",
"dev": "gulp watchAll",
"serve": "serve",
"start": "concurrently -r -k serve \"gulp watchAll\"",
"docker:build": "docker build -t kiwotigo:latest -f Dockerfile .",
"docker:start": "docker run -d -it --rm -p 8080:80 kiwotigo:latest",
"docker:sh": "docker run -it --rm --entrypoint /bin/sh kiwotigo:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spearwolf/kiwotigo.git"
},
"author": "Wolfger Schramm <[email protected]>",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/spearwolf/kiwotigo/issues"
},
"homepage": "https://github.com/spearwolf/kiwotigo#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@rollup/plugin-babel": "^5.3.0",
"concurrently": "^6.5.1",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.62.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.1.2",
"zx": "^4.2.0"
}
}