forked from grappler/ns-theme-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.39 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
80
81
82
83
{
"name": "theme-sniffer",
"version": "1.1.2",
"description": "Theme Sniffer plugin using sniffs. `WordPress-Theme` standard is used from WPTRT/WordPress-Coding-Standards.",
"main": "",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"autoprefixer": "^9.6.0",
"clipboard": "^2.0.4",
"cssnano": "^4.1.10",
"jquery": "^3.4.1",
"primer-tooltips": "^2.0.0",
"wp-license-compatibility": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"archiver": "^3.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"create-file-webpack": "^1.0.2",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"eslint-cli": "^1.1.1",
"eslint-config-wordpress": "^2.0.0",
"filemanager-webpack-plugin": "^2.0.5",
"fs-extra": "^8.0.1",
"husky": "^2.4.1",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.13.1",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-wordpress": "^14.0.0",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4",
"webpack-manifest-plugin": "^2.0.4"
},
"scripts": {
"start": "cross-env NODE_ENV=development && webpack --progress --watch --display-error-details --display-modules --display-reasons --mode development",
"build": "composer dump-autoload && cross-env NODE_ENV=production webpack -p --progress --mode production",
"precommit": "eslint assets/dev/scripts/*.js --fix && stylelint \"assets/dev/styles/**/*.scss\" --syntax scss && ./vendor/bin/phpcs --ignore=*/vendor/*,*/node_modules/* ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/WPTRT/theme-sniffer.git"
},
"author": "WordPress Theme Review Team",
"contributors": [
{
"name": "Denis Žoljom"
},
{
"name": "Nilambar Sharma"
},
{
"name": "Ulrich Pogson"
},
{
"name": "Tim Elsass"
}
],
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/WPTRT/theme-sniffer/issues"
},
"homepage": "https://github.com/WPTRT/theme-sniffer#readme",
"browserslist": [
"android >= 4.2",
"last 2 versions",
"Safari >= 8",
"not ie < 11"
],
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}