-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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": "tako80",
"version": "0.1.8",
"description": "Retro game engine",
"main": "tako80.js",
"directories": {},
"files": [
"example",
"project-template",
"src",
"tako80.min.js"
],
"scripts": {
"concat": "concat src/twgl.min.js src/player.js src/pt.js src/tako80.core.js -o tako80.min.js",
"uglify": "uglifyjs tako80.min.js -o tako80.min.js",
"compile": "webpack",
"build": "npm run compile; npm run concat; npm run uglify"
},
"bin": {
"tako80": "tako80.js"
},
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pistacchio/tako80.git"
},
"homepage": "http://tako80.net",
"bugs": {
"url": "https://github.com/pistacchio/tako80/issues",
"email": "[email protected]"
},
"devDependencies": {
"concat": "^1.0.3",
"uglify-es": "^3.0.15",
"webpack": "^3.0.0"
},
"dependencies": {
"ncp": "^2.0.0",
"node-static": "^0.7.9",
"npmview": "0.0.4",
"pngjs": "^3.2.0",
"semver": "^5.3.0"
}
}