-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·35 lines (35 loc) · 975 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
{
"name": "magnetic-particle-visualization",
"version": "0.0.3",
"description": "",
"repository": "https://github.com/woz5999/particle-viz",
"main": "js/app.js",
"dependencies": {
"uglifyjs": "^2.4.10"
},
"devDependencies": {
"babel-preset-es2015": "^6.0.15",
"babelify": "^7.2.0",
"browserify": "^6.2.0",
"envify": "^3.0.0",
"jest-cli": "^0.4.3",
"node-sass": "^3.4.1",
"watchify": "^2.1.1"
},
"scripts": {
"start": "watchify -o js/bundle.js -v -d js/app.js",
"build": "browserify -o js/bundle.js -v -d js/app.js && browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > js/bundle.min.js && npm run build-css;",
"test": "jest",
"build-css": "node-sass --include-path ./scss --output ./css ./scss/main.scss",
"deploy": "npm run build && appcfg.py update ."
},
"author": "Jeff Wozniak",
"browserify": {
"transform": [
"envify"
]
},
"jest": {
"rootDir": "./js"
}
}