forked from dotherightthing/wpdtrt-plugin-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2 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
{
"name": "wpdtrt-plugin-boilerplate",
"version": "1.7.16",
"description": "Boilerplate for WordPress plugin development.",
"main": "index.php",
"person": {
"name": "Dan Smith",
"email": "[email protected]",
"url": "https://profiles.wordpress.org/dotherightthingnz"
},
"contributors": [
{
"name": "Dan Smith",
"email": "[email protected]",
"url": "https://profiles.wordpress.org/dotherightthingnz"
}
],
"bugs": {
"url": "https://github.com/dotherightthing/wpdtrt-plugin-boilerplate/issues"
},
"keywords": [
"boilerplate",
"framework",
"plugin",
"WordPress"
],
"dependencies": {},
"devDependencies": {
"wpdtrt-npm-scripts": "github:dotherightthing/wpdtrt-npm-scripts#semver:0.3.*"
},
"config": {
"wpdtrt_base_url_local": "http://dontbelievethehype.dan",
"wpdtrt_npm_scripts": "./node_modules/wpdtrt-npm-scripts"
},
"scripts": {
"changelog": "npm run changelog --prefix $npm_package_config_wpdtrt_npm_scripts",
"compile": "npm run compile --prefix $npm_package_config_wpdtrt_npm_scripts",
"docs": "npm run docs --prefix $npm_package_config_wpdtrt_npm_scripts",
"lint": "npm run lint --prefix $npm_package_config_wpdtrt_npm_scripts",
"release": "npm run release --prefix $npm_package_config_wpdtrt_npm_scripts",
"scrape:wordpress_maintenance_page": "npm run scrape:wordpress_maintenance_page --prefix $npm_package_config_wpdtrt_npm_scripts -- $npm_package_config_wpdtrt_base_url_local",
"test": "npm run test --prefix $npm_package_config_wpdtrt_npm_scripts",
"version": "npm run version --prefix $npm_package_config_wpdtrt_npm_scripts",
"watch": "nodemon"
},
"repository": {
"type": "git",
"url": "https://github.com/dotherightthing/wpdtrt-plugin-boilerplate"
},
"license": "ISC",
"homepage": "https://github.com/dotherightthing/wpdtrt-plugin-boilerplate",
"srcDir": "/Volumes/DanBackup/Websites/wpdtrt-plugin-boilerplate",
"author": "Dan Smith <[email protected]>"
}