-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.13 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
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
{
"name": "@platform-coop-toolkit/pcc-framework",
"version": "2.4.0",
"description": "Utilities, custom post types and blocks for the Platform Cooperativism Consortium website.",
"author": "OCAD University",
"license": "BSD-3-Clause",
"keywords": [
"wordpress",
"plugin",
"custom post types",
"blocks"
],
"homepage": "https://github.com/platform-coop-toolkit/pcc-framework",
"private": true,
"repository": "https://github.com/platform-coop-toolkit/pcc-framework",
"bugs": "https://github.com/platform-coop-toolkit/pcc-framework/issues",
"main": "Gruntfile.js",
"dependencies": {
"@wordpress/components": "^9.3.0",
"@wordpress/edit-post": "^3.14.0",
"@wordpress/i18n": "^3.10.0",
"@wordpress/plugins": "^2.13.0"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^6.1.0",
"@wordpress/scripts": "^10.0.0",
"autoprefixer": "^9.8.0",
"cssnano": "^4.1.10",
"gulp": "^4.0.2",
"gulp-postcss": "^8.0.0",
"gulp-readme-to-markdown": "^0.2.1",
"prettier": "npm:wp-prettier@^1.19.1"
},
"scripts": {
"env": "wp-scripts env",
"readme": "gulp readme",
"start": "wp-scripts start",
"build": "npm run -s build:scripts && npm run -s build:styles",
"build:production": "npm run -s build",
"build:scripts": "wp-scripts build",
"build:styles": "gulp css",
"lint:scripts": "wp-scripts lint-js ./src",
"lint:styles": "wp-scripts lint-style './src/**/*.css'",
"lint:pkg-json": "wp-scripts lint-pkg-json .",
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:pkg-json",
"localize": "wp i18n make-pot . languages/pcc-framework.pot --headers='{\"Report-Msgid-Bugs-To\":\"https://github.com/platform-coop-toolkit/pcc-framework/issues\"}'",
"test": "npm run -s lint"
},
"browserslist": [
"last 1 version",
"> 1%"
],
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config",
"rules": {
"valid-values-license": [
"error",
[
"BSD-3-Clause"
]
]
}
},
"wp-env": {
"plugin-dir": "pcc-framework",
"plugin-name": "PCC Framework"
}
}