forked from campuspress/divi-accessibility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "divi-accessibility",
"version": "2.0.5",
"description": "A WordPress plugin that improves Divi accessibility in accordance with WCAG 2",
"watch": {
"build": {
"patterns": [
"public/partials/css",
"public/partials/js"
],
"extensions": "css,js",
"ignore": "*.min.*"
}
},
"scripts": {
"styles": "node scripts/compress-css.js",
"lint-styles": "csslint public/partials/css --ignore=order-alphabetical,important --quiet",
"scripts": "node scripts/compress-js.js",
"lint-scripts": "eslint public/partials/js",
"lint": "npm run lint-scripts && npm run lint-styles",
"build": "npm run scripts && npm run styles",
"watch": "npm-watch",
"i18n": "wpi18n makepot",
"package": "npm run build && node scripts/package.js",
"prerelease": "node scripts/prerelease.js",
"release": "npm run lint && npm run i18n && npm run prerelease && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/campuspress/divi-accessibility.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/campuspress/divi-accessibility/issues"
},
"homepage": "https://github.com/campuspress/divi-accessibility#readme",
"devDependencies": {
"adm-zip": "^0.4.16",
"compare-versions": "^3.6.0",
"csslint": "^1.0.5",
"cssnano": "^5.0.6",
"eslint": "^6.8.0",
"node-wp-i18n": "^1.2.5",
"npm-watch": "^0.10.0",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"readline-sync": "^1.4.10",
"shelljs": "^0.8.4",
"terser": "^4.8.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"dependencies": {}
}