-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.27 KB
/
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
{
"name": "binlist-www",
"description": "https://binlist.net",
"repository": "binlist/www",
"dependencies": {
"add-script": "^1.0.1",
"async-cache": "^1.1.0",
"autoprefixer-stylus": "^0.13.0",
"binlookup": "^2.0.0",
"browserify": "^14.3.0",
"cpx": "^1.5.0",
"envify": "^4.0.0",
"jstransformer-highlight": "^1.0.1",
"npm-parallel": "^2.0.1",
"object-assign": "^4.1.1",
"pug-cli": "^1.0.0-alpha6",
"stylus": "^0.54.5",
"uglifyify": "^3.0.4"
},
"scripts": {
"styles:watch": "stylus --use autoprefixer-stylus --watch --sourcemap index.styl --out dist/index.css",
"markup:watch": "pug --out dist/ --watch --pretty index.pug",
"script:watch": "watchify index.js -g [ envify purge ] -d -v -o dist/index.js",
"assets:watch": "cpx 'assets/*' dist/ --verbose --watch",
"styles:build": "stylus --use autoprefixer-stylus --compress index.styl --out dist/index.css",
"markup:build": "pug --out dist/ index.pug",
"script:build": "browserify index.js -g [ envify purge ] -g uglifyify > dist/index.js",
"assets:build": "cpx 'assets/*' dist/ --verbose",
"watch": "mkdir -p dist && parallel assets:watch markup:watch styles:watch script:watch",
"build": "mkdir -p dist && parallel assets:build markup:build styles:build script:build"
},
"license": "UNLICENSED"
}