-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 964 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
33
34
35
36
37
38
39
40
41
{
"name": "yappy_bird",
"version": "0.0.0",
"description": "Sound based flappy bird clone",
"main": "src/app.js",
"scripts": {
"start": "watchify . -o bundle.js -v -d",
"build": "browserify . | uglifyjs -m -c > bundle.js",
"test": "jest"
},
"dependencies": {
"es6-promise": "^1.0.0"
},
"browserify": {
"transform": [
[
"reactify",
{
"es6": true,
"extension": [
"jsx",
"js"
],
"visitors": [
"es6-destructuring-jstransform",
"jstransform/visitors/es6-arrow-function-visitors",
"jstransform/visitors/es6-class-visitors",
"jstransform/visitors/es6-object-concise-method-visitors"
]
}
]
]
},
"author": "Nate Hunzaker",
"license": "MIT",
"devDependencies": {
"es6-destructuring-jstransform": "^0.1.0",
"react": "^0.12.2",
"reactify": "^0.13.1"
}
}