This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.03 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
58
59
{
"private": true,
"name": "generator-wpdtrt-plugin-boilerplate",
"version": "0.9.5",
"description": "Generate a best-practice boilerplate for WordPress plugin development.",
"keywords": [
"wordpress",
"yeoman-generator"
],
"main": "generators/app/index.js",
"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/generator-wpdtrt-plugin-boilerplate/issues"
},
"config": {
"wpdtrt_base_url_local": "http://localhostname.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",
"test": "npm run test --prefix $npm_package_config_wpdtrt_npm_scripts",
"test:jsui": "npx cypress open",
"version": "npm run version --prefix $npm_package_config_wpdtrt_npm_scripts",
"watch": "nodemon"
},
"repository": {
"type": "git",
"url": "https://github.com/dotherightthing/generator-wpdtrt-plugin-boilerplate"
},
"license": "ISC",
"homepage": "https://github.com/dotherightthing/generator-wpdtrt-plugin-boilerplate",
"srcDir": "/Volumes/DanBackup/Websites/generator-wpdtrt-plugin-boilerplate",
"devDependencies": {
"chalk": "^2.4.1",
"path": "^0.12.7",
"string": "^3.3.3",
"wpdtrt-npm-scripts": "github:dotherightthing/wpdtrt-npm-scripts#semver:0.3.*",
"yeoman-generator": "^4.0.2",
"yosay": "^2.0.2"
},
"files": [
"generators"
]
}