-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 870 Bytes
/
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
{
"name": "html5-kurve-game",
"version": "1.0.0",
"description": "Achtung, die kurve game written in HTML5 and pure Javascript",
"main": "index.js",
"scripts": {
"start": "npm run build && node .",
"watch": "watchify src/index.js -o dist/bundle.js",
"build": "browserify src/index.js -t [babelify] | uglifyjs > dist/bundle.js"
},
"keywords": [],
"author": "akcyp",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-preset-minify": "^0.5.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"uglify-js": "^3.6.0",
"watchify": "^3.11.1"
},
"browserslist": {
"targets": "> 0.25%, not dead"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akcyp/html5-kurve-game.git"
}
}