-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage-wp-ready.json
81 lines (81 loc) · 3.23 KB
/
package-wp-ready.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "wordpress-starter-theme",
"version": "1.0.0",
"description": "A starter bare-bones WordPress theme framework.",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run watch & browser-sync start --files \"!node_modules\" --files \"**/*.php\" --files \"assets/**/*\" --files \"*.css\" --proxy http://l.ocalsite --no-notify",
"open:local": "opener http://l.ocalsite",
"open:dev": "opener https://devsite.40d.io",
"open:prod": "opener https://www.barkleyus.com",
"build:images": "imagemin -p -o 4 ./_src/images ./assets/images",
"watch:images": "chokidar \"./_src/images/**/*.+(jpg|jpeg|png|gif|svg)\" -c \"if [ '{event}' == 'change' ] || [ '{event}' == 'add' ]; then imagemin -p -o 4 '{path}' ./assets/images; fi;\"",
"build:js": "cd ./_src/js && npm run build:js",
"watch:js": "cd ./_src/js && npm run watch:js",
"build:sass": "cd ./_src/sass && npm run build:sass -- --output_dir ../..",
"watch:sass": "chokidar \"./_src/sass/**/*.scss\" -c \"npm run build:sass\"",
"build:sprites": "sprity create \"./assets/images/sprites\" \"./_src/sprites/images/**/*.png\" --css-path assets/images/sprites --split --prefix sprite --dimensions 1:72 -d 2:192 --margin 5 --template ./_src/sprites/templates/scss.hbs --style ../../../_src/sass/util/_sprites.scss",
"watch:sprites": "chokidar \"./_src/sprites/images/**/*.png\" -c \"npm run build:sprites\"",
"build:symbols": "svg-sprite --dest ./assets/images/sprites --symbol --symbol-inline --symbol-dest \"symbols.svg\" --symbol-sprite . ./_src/symbols/**/*.svg",
"watch:symbols": "chokidar \"./_src/symbols/**/*.svg\" -c \"npm run build:symbols\"",
"build": "parallelshell \"npm run build:images\" \"npm run build:js\" \"npm run build:sass\" \"npm run build:sprites\" \"npm run build:symbols\"",
"watch": "parallelshell \"npm run watch:images\" \"npm run watch:js\" \"npm run watch:sass\" \"npm run watch:sprites\" \"npm run watch:symbols\""
},
"repository": {
"type": "git",
"url": "https://github.com/40Digits/wordpress-starter-theme"
},
"author": "40Digits",
"contributors": [
{
"name": "Brandon Cash"
},
{
"name": "Besim Huskic"
},
{
"name": "Chad Watson"
},
{
"name": "CK Hicks"
},
{
"name": "Grant Holle"
},
{
"name": "Sav Russell"
}
],
"license": "ISC",
"devDependencies": {
"opener": "^1.4.1",
"parallelshell": "^2.0.0",
"browser-sync": "^2.13.0",
"threepio": "^1.0.0",
"chokidar-cli": "^1.2.0",
"imagemin-cli": "^2.1.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.1.0",
"eslint-plugin-react": "^5.0.1",
"sprity-cli": "chadwatson/sprity-cli#e2f5dd7",
"svg-sprite": "^1.2.19",
"lodash.throttle": "^4.1.1",
"webpack": "^2.2.1"
},
"dependencies": {
"autoprefixer": "^6.7.7",
"node-notifier": "^5.1.2",
"node-sass": "^4.5.2",
"postcss": "^5.2.17",
"sassqwatch": "^0.7.4",
"throttle-debounce": "^1.0.1",
"styleselect": "^1.0.2"
}
}