-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.91 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
{
"name": "starter-theme",
"title": "Starter Theme",
"description": "Theme development boilerplate.",
"version": "1.0.0",
"license": "GPL-2.0+",
"private": "true",
"scripts": {
"clean": "rm -Rf *-vars.scss *-vars.css build && mkdir -p build",
"grunt:dev": "grunt build watch",
"grunt:build": "grunt build",
"vars:style": "node tools/sass-variables.js --prefix=x style.scss --ignore=bourbon --output style-css-vars.scss",
"vars:editor": "node tools/sass-variables.js --prefix=x editor.scss --root-selector=body --ignore=bourbon --output editor-css-vars.scss",
"build:rtl": "rtlcss style.css style-rtl.css",
"build:all": "npm run -s clean && npm run -s grunt:build && npm run -s vars:style && npm run -s vars:editor && npm run -s grunt:build && npm run -s build:rtl && npm run -s clean",
"build:theme": "npm run -s build:all && rsync -a . build/ --exclude-from=excludes.rsync && node tools/buildtool.js --check --path build/; mv build $npm_package_name; mkdir build; zip -mqr build/$npm_package_name.zip $npm_package_name; cd build/; unzip -qq $npm_package_name.zip; npm run -s finished",
"finished": "echo '\n• Finished building' $npm_package_name '\n'"
},
"devDependencies": {
"colors": "~1.3.2",
"file": "~0.2.2",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-copy": "~0.8.0",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "~4.1.0",
"minimist": "~1.2.0",
"node-bourbon": "~4.2.3",
"node-sass": "~9.0.0",
"rtlcss": "^2.4.0",
"susy": "~2.2.5",
"underscore": "^1.13.8"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.1.0"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
}
}