-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.36 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
{
"name": "theming",
"version": "1.0.1",
"description": "WordPress Theme Framework",
"scripts": {
"build": "npm run css && webpack --config webpack.prod.js",
"css-compile": "sass assets/src/scss:assets/dist/css --style compressed --embed-source-map",
"css-prefix": "postcss --replace assets/dist/css/style.css --use autoprefixer --map",
"css": "npm run css-compile && npm run css-prefix",
"css-dev-compile": "sass assets/src/scss:assets/dist/css --style expanded --embed-source-map",
"css-dev": "npm run css-dev-compile && npm run css-prefix",
"watch": "nodemon -e scss -x \"npm run css-dev && webpack --config webpack.dev.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogertm/theming.git"
},
"keywords": [
"wordpress",
"framework",
"wordpress-framework",
"theme",
"bootstrap"
],
"author": "RogerTM",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/rogertm/theming/issues"
},
"homepage": "https://github.com/rogertm/theming#readme",
"devDependencies": {
"@popperjs/core": "^2.11.8",
"autoprefixer": "^10.4.21",
"bootstrap": "^5.3.7",
"clean-webpack-plugin": "^4.0.0",
"sass": "^1.89.2",
"nodemon": "^3.1.10",
"postcss-cli": "^11.0.1",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
}
}