-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 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
{
"name": "@washingtonstateuniversity/hrswp-plugin-blocks",
"version": "1.0.0",
"description": "A WSU HRS WordPress plugin to provide document management and listing.",
"author": "Adam Turner",
"contributors": [
{
"name": "washingtonstateuniversity"
}
],
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"plugin",
"documents",
"blocks"
],
"homepage": "https://github.com/washingtonstateuniversity/hrswp-plugin-blocks/blob/stable/README.md",
"repository": {
"type": "git",
"url": "https://github.com/washingtonstateuniversity/hrswp-plugin-blocks"
},
"bugs": {
"url": "https://github.com/washingtonstateuniversity/hrswp-plugin-blocks/issues"
},
"browserslist": [
"> 1%",
"ie 8-11",
"Firefox ESR"
],
"devDependencies": {
"@wordpress/babel-preset-default": "^4.15.0",
"@wordpress/dependency-extraction-webpack-plugin": "^2.9.0",
"@wordpress/eslint-plugin": "^7.0.0",
"@wordpress/npm-package-json-lint-config": "3.1.0",
"babel-loader": "^8.3.0",
"classnames": "^2.2.6",
"cssnano": "^6.0.1",
"eslint": "^7.3.1",
"eslint-plugin-jest": "^23.18.0",
"lodash": "^4.17.21",
"npm-package-json-lint": "^6.4.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^9.1.4",
"prettier": "npm:[email protected]",
"resolve-bin": "^0.4.0",
"rimraf": "^3.0.2",
"source-map-loader": "^1.0.0",
"stylelint": "^15.10.1",
"stylelint-config-wordpress": "^17.0.0",
"thread-loader": "^3.0.4",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"build": "NODE_ENV=production run-s clean test 'build:*'",
"build:scripts": "webpack",
"build:styles": "postcss 'src/*.css' --dir build/",
"clean": "rimraf build/",
"lint:scripts": "eslint '*.js' 'src/**/*.js'",
"lint:styles": "stylelint 'src/**/*.css'",
"lint:pkg": "npmPkgJsonLint .",
"lint:php": "composer lint-detail",
"fix:scripts": "eslint --fix '*.js' 'src/**/*.js'",
"start": "run-p 'build:*'",
"fix": "run-p 'fix:*'",
"test": "run-p 'lint:*'"
}
}