-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "fczwaves",
"version": "0.1.0",
"description": "tests for a global game jam entry",
"main": "index.js",
"repository": "git@github.com:fczuardi/waves.git",
"author": "Fabricio C Zuardi <fabricio@fabricio.org>",
"license": "AGPL-3",
"scripts": {
"start": "budo ./src/index.js --port 8081 --dir ./docs --live --force-default-index -- -t [babelify]",
"build:app": "browserify -t [babelify] ./src/index.js -o ./docs/bundle.js",
"build:libs": "node ./tasks/copy-libs.js",
"format": "prettier --write"
},
"babel": {
"plugins": [
"transform-es2015-destructuring"
]
},
"dependencies": {
"bel": "^4.5.1",
"eases": "^1.0.8",
"fastclick": "^1.0.6",
"howler": "^2.0.2",
"matter-js": "^0.11.1",
"pixi.js": "^4.3.4"
},
"devDependencies": {
"babel-plugin-transform-es2015-destructuring": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"budo": "^9.4.5",
"http-server": "^0.9.0",
"prettier": "^0.0.10",
"shelljs": "^0.7.6"
}
}