-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.4 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
{
"name": "tpp",
"version": "1.0.0",
"description": "Clone Battle City",
"main": "index.js",
"scripts": {
"lint": "eslint game/src",
"babel": "babel game/src -d game/dist",
"browserify": "browserify game/dist/main.js -o game/dist/app.js",
"browserify-dev": "browserify game/dist/main.js -o game/build/app.min.js",
"min": "uglifyjs -o game/build/app.min.js game/dist/app.js",
"build-lint": "npm run lint && npm run babel && npm run browserify && npm run min",
"build": "npm run babel && npm run browserify && npm run min",
"build-dev": "npm run babel && npm run browserify-dev",
"publish": "git checkout gh-pages && git merge master && git push && git checkout master",
"start": "http-server -p 8000 -c-1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schibir/tpp.git"
},
"keywords": [
"tanchiki",
"battle",
"city"
],
"author": "Sergey Chibiryaev",
"license": "MIT",
"bugs": {
"url": "https://github.com/schibir/tpp/issues"
},
"homepage": "https://github.com/schibir/tpp#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-preset-env": "^1.6.1",
"browserify": "^14.5.0",
"eslint": "^8.42.0",
"eslint-cli": "^1.1.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.8.0",
"http-server": ">=0.10.0",
"uglify-js": "^3.1.8"
}
}