This repository has been archived by the owner on Apr 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.03 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
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
{
"name": "crdm-basic",
"version": "0.3.0",
"description": "A playful WordPress theme made for children's organizations",
"keywords": [
"wordpress",
"skaut",
"crdm",
"theme",
"children"
],
"homepage": "https://wordpress.org/themes/crdm-basic/",
"bugs": {
"url": "https://github.com/skaut/crdm-basic/issues"
},
"license": "GPL-3.0-or-later",
"author": "David Odehnal",
"contributors": [
{
"name": "Marek Dědič",
"email": "developer@dedic.eu"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/skaut/crdm-basic.git"
},
"dependencies": {
"css-vars-ponyfill": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-compat": "^3.5.1",
"glob": "^7.1.6",
"imagemin-webpack-plugin": "^2.4.2",
"md5-file": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.27",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^8.0.2",
"stylelint": "^13.3.2",
"stylelint-config-wordpress": "^15.0.0",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"stylelint-scss": "^3.17.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-livereload-plugin": "^2.3.0"
},
"scripts": {
"build": "npm run build:prod",
"build:dev": "webpack --mode \"development\" --watch",
"build:prod": "webpack --mode \"production\"",
"lint": "run-s -c lint:*",
"lint:phpcs": "vendor/bin/phpcs",
"lint:phpmd": "vendor/bin/phpmd src text phpmd.xml",
"lint:phan": "export PHAN_DISABLE_XDEBUG_WARN=1; vendor/bin/phan",
"lint:eslint": "eslint src/**/*.js",
"lint:stylelint": "stylelint src/**/*.scss"
},
"browserslist": [
">1%",
"last 2 versions",
"safari >= 8",
"ie 11"
]
}