-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 811 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 811 Bytes
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
{
"name": "cubeactive",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/browserify App.js -o bundle.js --debug",
"build-prod": "./node_modules/.bin/browserify App.js | ./node_modules/.bin/uglifyjs -mc -v=0 > bundle.js",
"watch": "./node_modules/.bin/watchify App.js -o bundle.js --debug"
},
"author": "Hugo Bessa <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash": "^2.4.1",
"rx": "^2.3.24",
"rx-react": "^0.1.0",
"react": "^0.12.2",
"react-prefixr": "^0.1.0",
"curry-d": "^0.6.0",
"viewport-size": "0.0.1"
},
"devDependencies": {
"watchify": "^2.2.1",
"browserify": "^8.1.1",
"uglify-js": "^2.4.16"
}
}