-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "project-using-browserify-and-postcss",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rimraf dist && mkdirp dist ",
"build": "npm-run-all clean -p build:*",
"build:html": "cpx src/*.html dist/",
"build:images": "cpx src/images/*.{png,jpg} dist/images/",
"build:scripts": "browserify src/scripts/main.js -o dist/bundle.js",
"build:styles": "postcss -c postcss.config.json",
"watch": "npm-run-all -p watch:* http-server",
"watch:html": "chokidar 'src/*.html' -c 'cpx src/*.html dist'",
"watch:scripts": "watchify src/scripts/main.js -v -o dist/bundle.js",
"watch:styles": "chokidar 'src/styles/**/*.css' -c 'postcss -c postcss.config.json -m'",
"http-server": "http-server dist",
"lint": "npm-run-all lint:*",
"lint:html": "htmlhint src/*.html",
"lint:scripts": "eslint -c .eslintrc src/scripts/**/*.js ",
"lint:styles": "stylelint src/styles/*.css"
},
"keywords": [],
"author": "yhorie <yuk.horie@gmail.com>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.4.1",
"browserify": "^13.1.0",
"browserify-shim": "^3.8.12",
"chokidar-cli": "^1.2.0",
"cpx": "^1.5.0",
"eslint": "^3.6.0",
"htmlhint": "^0.9.13",
"http-server": "^0.9.0",
"jquery": "^3.1.1",
"mkdirp": "^0.5.1",
"npm-run-all": "^3.1.0",
"postcss-cli": "^2.6.0",
"postcss-custom-properties": "^5.0.1",
"postcss-import": "^8.1.2",
"postcss-nested": "^1.0.0",
"postcss-reporter": "^1.4.1",
"rimraf": "^2.5.4",
"stylelint": "^7.3.1",
"stylelint-config-standard": "^13.0.2",
"watchify": "^3.7.0",
"waypoints": "^4.0.1"
},
"dependencies": {
"normalize.css": "^4.2.0"
},
"browser": {
"waypoints": "./node_modules/waypoints/lib/noframework.waypoints.js"
},
"browserify-shim": {
"waypoints": {
"exports": "waypoints"
}
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}