-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 2.1 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
{
"name": "oxyprops-lite",
"version": "0.9.0-beta-1",
"description": "Open Props CSS Custom properties for WordPress users",
"main": "index.js",
"scripts": {
"start": "webpack --mode=development --watch",
"build": "concurrently \"webpack --mode=production\" && concurrently npm:copy:* -m 25 && npm run zippack",
"lib:normalize": "postcss src/sass/normalize/normalize.css -o ../../../assets/css/oxynormalize.op-lite.min.css",
"copy:images": "copyfiles './src/images/**/*' assets/images",
"copy:assets": "copyfiles './assets/**/*' dist/oxyprops-lite",
"copy:config": "copyfiles './config/**/*' dist/oxyprops-lite",
"copy:includes": "copyfiles './includes/**/*' dist/oxyprops-lite",
"copy:languages": "copyfiles './languages/**/*' dist/oxyprops-lite",
"copy:templates": "copyfiles './templates/**/*' dist/oxyprops-lite",
"copy:vendor": "copyfiles './vendor/**/*' dist/oxyprops-lite",
"copy:root": "copyfiles *.php dist/oxyprops-lite copyfiles *.txt dist/oxyprops-lite copyfiles LICENSE dist/oxyprops-lite",
"copy": "concurrently npm:copy:*",
"zippack": "zip-build dist zipped -t %NAME%.%VERSION%.%EXT%",
"build:final": "concurrently npm:copy:* -m 25 && npm run zippack"
},
"author": "Cédric Bontems",
"license": "MIT",
"dependencies": {
"concurrently": "^7.2.2",
"node-wget": "^0.4.3",
"open-props": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"copyfiles": "^2.4.1",
"css-loader": "^6.7.1",
"cssnano": "^5.1.12",
"file-loader": "^6.2.0",
"image-webpack-loader": "^8.1.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.14",
"postcss-cli": "^10.0.0",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-import": "^14.1.0",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.7.2",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"zip-build": "^1.7.0"
}
}