This repository has been archived by the owner on Jun 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.29 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "svg-online-darts",
"version": "0.0.1",
"description": "online darts",
"license": "MIT",
"scripts": {
"autoprefixer": "postcss -r --use autoprefixer --config autoprefixer.json \"dist/css/**/*.css\"",
"build:css": "cpx \"src/**/*.css\" dist",
"build:html": "cpx \"src/html/**/*.html\" dist",
"build:img": "cpx \"src/**/*.{jpg,jpeg,png,webp,bmp}\" dist",
"build:js": "globify \"src/js/**/*index.js\" --outfile=dist/js -v",
"build:pug": "jade src/pug --out dist --pretty",
"build:scss": "node-sass ./src/scss -o ./dist/css --output-style expanded && npm run autoprefixer",
"clean": "rimraf ./dist",
"cpx:css": "cpx \"src/**/*.css\" dist -v",
"cpx:html": "cpx \"src/**/*.html\" dist -v",
"dev": "npm-run-all clean build:** -p watch:** serve",
"serve": "autoreload-server -p 8080 -d ./dist",
"start": "npm-run-all clean build:** -p serve",
"deploy": "rm -rf docs && cp -rf dist docs",
"watch:css": "watch \"npm run build:css\" src/css --wait 1 --interval 1",
"watch:html": "watch \"npm run build:html\" src/html --wait 1 --interval 1",
"watch:img": "watch \"npm run build:img\" src/img --wait 1 --interval 1",
"watch:js": "watch \"npm run build:js\" src/js --wait 1 --interval 1",
"watch:pug": "watch \"npm run build:pug\" src/pug --wait 1 --interval 1",
"watch:scss": "watch \"npm run build:scss\" src/scss --wait 1 --interval 1"
},
"browserify": {
"transform": [
[
"babelify",
{
"sourceMap": true
}
]
]
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"jquery": "^3.1.1"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"cpx": "^1.5.0",
"globify": "^1.2.2",
"jade": "^1.11.0",
"jade-cli": "^0.1.1",
"node-sass": "^3.13.0",
"npm-run-all": "^3.1.1",
"postcss-cli": "^2.6.0",
"pug": "^2.0.0-beta6",
"pug-cli": "^1.0.0-alpha6",
"rimraf": "^2.5.4",
"simple-autoreload-server": "^0.2.6",
"watch": "^1.0.1",
"watchify": "^3.7.0",
"yargs": "^6.4.0"
}
}