-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.63 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
{
"author": "mubaidr@gmail.com",
"bugs": {
"url": "https://github.com/mubaidr/pico-game-template/issues"
},
"description": "A minimal template to create HTML5 game using Canvas and JavaScript.",
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.4.3",
"cross-env": "^5.2.0",
"del-cli": "^1.1.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"parcel-bundler": "^1.9.7",
"zip-local": "^0.3.4"
},
"files": [
"src"
],
"homepage": "https://github.com/mubaidr/pico-game-template#readme",
"keywords": [
"html5",
"canvas",
"game",
"javascript",
"pico"
],
"license": "MIT",
"main": "src/index.html",
"name": "pico-game-template",
"repository": {
"type": "git",
"url": "git+https://github.com/mubaidr/pico-game-template.git"
},
"scripts": {
"build": "npm run clean&& npm run build-dist && npm run build-docs && node create-zip.js",
"build-dist": "cross-env NODE_ENV=production parcel build ./src/index.html --out-dir ./dist/ --no-cache --no-source-maps --experimental-scope-hoisting",
"build-docs": "cross-env NODE_ENV=docs parcel build ./src/index.html --out-dir ./docs/ --no-cache --no-source-maps --experimental-scope-hoisting",
"clean": "del-cli ./dist/* ./docs/* -f",
"dev": "parcel ./src/index.html --out-dir ./build/ --open",
"lint": "eslint --fix src/"
},
"version": "0.0.1"
}