-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 KB
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
42
43
{
"name": "buylist",
"version": "1.0.0",
"description": "",
"main": "index.js",
"watch": {
"html": "src/pug/*.pug",
"css": "src/stylus/*.styl",
"js": {
"patterns": [
"src/js",
"test"
],
"extensions": "js,yaml"
}
},
"scripts": {
"js": "browserify --debug -t [ babelify ] src/js/index.js -o dist/js/bundle.js",
"sw": "browserify -t [ babelify ] src/js/sw.js -o dist/sw.js",
"html": "pug -P < src/pug/index.pug > dist/index.html",
"css": "stylus -m < src/stylus/main.styl > dist/css/main.css",
"all": "npm run build && npm run html && npm run css",
"prod": "bower install && browserify -t [ babelify ] src/js/index.js -o js/bundle.js && browserify -t [ babelify ] src/js/sw.js -o sw.js && stylus < src/stylus/main.styl > css/main.css && pug < src/pug/index.pug > index.html",
"watch": "npm-watch",
"vendor": "bower install"
},
"author": "Nicolas Dufreche <n.dufreche@gmail.com>",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"npm-watch": "^0.1.7",
"pug": "^2.0.0-beta7",
"pug-cli": "^1.0.0-alpha6",
"stylus": "^0.54.5"
},
"dependencies": {
"jquery": "^3.1.1",
"lodash.defaults": "^4.2.0",
"lodash.findkey": "^4.6.0"
}
}