This repository was archived by the owner on Jan 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.5 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "wplr-rml",
"version": "1.1.2",
"description": "WordPress Real Media Library Add-On Boilerplate using new web technologies.",
"author": "Matthias Günter <support@matthias-web.com>",
"license": "MIT",
"private": "true",
"homepage": "https://matthias-web.com/wordpress/real-media-library",
"repository": {
"type": "git",
"url": "https://github.com/matzeeable/wplr-rml"
},
"apidoc": {
"sampleUrl": "/wp-json"
},
"main": "index.js",
"scripts": {
"create": "npm install && npm run generate && npm run build && npm run build-dev && composer install && npm run docs && grunt copy-npmLibs && npm run svn-co",
"svn-co": "mkdir dist && svn co https://plugins.svn.wordpress.org/wplr-sync-folders dist",
"generate": "grunt wordpress-reactjs-starter-makeyours",
"build": "NODE_ENV=production webpack",
"build-dev": "webpack",
"webpack-build-done": "grunt cachebuster:public",
"dev": "webpack --watch",
"lint": "eslint public/src",
"serve": "npm run build && npm run build-dev && grunt copy-npmLibs && grunt public-cachebuster && grunt serve",
"phpdocs": "rm -rf docs/php && vendor/bin/apigen generate --source inc/ --destination docs/php --template-theme bootstrap",
"jsdocs": "rm -rf docs/js && ./node_modules/.bin/jsdoc public/src -c build/jsdoc.json",
"apidocs": "rm -rf docs/api && ./node_modules/.bin/apidoc -i inc -o docs/api",
"hookdocs": "rm -rf docs/hooks && ./node_modules/.bin/jsdoc inc -c build/hookdoc.json",
"docs": "npm run phpdocs && npm run jsdocs && npm run apidocs && npm run hookdocs"
},
"dependencies": {},
"engines": {
"node": ">=0.8"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.2",
"apidoc": "^0.17.6",
"autoprefixer": "^9.1.5",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"classnames": "^2.2.6",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"eslint-plugin-react": "^7.11.1",
"grunt": "^1.0.3",
"grunt-cachebuster": "^0.1.7",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-node-modules-cachebuster": "^0.1.0",
"jsdoc": "^3.5.5",
"lodash": "^4.17.11",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.11.0",
"postcss-clean": "^1.1.0",
"postcss-loader": "^3.0.0",
"prompt": "^1.0.0",
"sass-loader": "^7.1.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"wp-hookdoc": "^0.2.0"
}
}