forked from 10up/distributor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.82 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": "distributor",
"description": "Distributor is a WordPress plugin that makes it easy to distribute and reuse content across your websites — whether in a single multisite or across the web.",
"author": "Taylor Lovett, 10up",
"scripts": {
"build": "gulp",
"lint": "eslint assets/js",
"lint-fix": "eslint assets/js --fix",
"js": "gulp js",
"watch": "gulp watch",
"css": "gulp css",
"postinstall": "gulp",
"makepot": "wpi18n makepot && echo '.pot file updated'",
"release": "rm -rf release/ && git worktree prune && npm run build && git fetch && git worktree add -B stable release origin/stable && gulp copy",
"build:docs": "rm -rf hook_docs && jsdoc -c hookdoc-conf.json distributor.php includes"
},
"devDependencies": {
"@10up/eslint-config": "^1.0.9",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@wordpress/url": "^2.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"compare-versions": "^3.6.0",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.4",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.1",
"gulp-filter": "^6.0.0",
"gulp-livereload": "^4.0.2",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp4-run-sequence": "^1.0.1",
"imports-loader": "^0.8.0",
"jsdoc": "^3.6.4",
"natives": "^1.1.6",
"node-wp-i18n": "^1.2.3",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"pump": "^3.0.0",
"require-dir": "^1.2.0",
"run-sequence": "^2.2.1",
"webpack": "^4.43.0",
"webpack-stream": "^5.2.1",
"wp-hookdoc": "^0.2.0"
},
"engines": {
"node": ">=8.9.10"
}
}