-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 989 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": "random_grid",
"version": "1.0.0",
"description": "Random grid generator",
"main": "index.js",
"scripts": {
"build-js": "browserify src/js/main.js > dist/js/bundle.js",
"watch-js": "watchify src/js/main.js -o dist/js/bundle.js -v",
"build-css": "node-sass --output-style compressed src/scss/main.scss dist/css/global.css",
"watch-css": "nodemon -e scss -x \"npm run build-css\"",
"build": "npm run build-js & npm run build-css",
"watch": "npm run watch-js & npm run watch-css",
"start": "npm run watch"
},
"author": "Jérémy Levron [email protected]",
"license": "ISC",
"devDependencies": {
"browserify": "^14.1.0",
"browserify-shim": "^3.8.13",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"watchify": "^3.9.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:$"
},
"dependencies": {
"bootstrap-sass": "^3.3.7"
}
}