-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "wp-artisan",
"version": "0.0.3",
"description": "A command-line toolkit for WordPress developers",
"bin": {
"wp": "./bin/index.js"
},
"scripts": {
"lint": "eslint ./bin ./lib",
"prettier": "prettier --write ./lib/**/*.js ./lib/**/*.css ./lib/**/*.json ./bin/**/*.js",
"test": "npm run lint",
"precommit": "npm run lint && npm run prettier"
},
"author": "thinkholic <[email protected]> (http://www.thinkholic.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kodeflex/wp-artisan.git"
},
"homepage": "https://github.com/kodeflex/wp-artisan#readme",
"bugs": {
"url": "https://github.com/kodeflex/wp-artisan/issues"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"fs": "0.0.1-security",
"fs-extra": "^2.0.0",
"inquirer": "^3.0.4",
"lodash": "^4.17.4",
"mysql": "^2.13.0",
"node-wp-cli": "0.0.2",
"shelljs": "^0.7.6",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^6.10.0",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4"
}
}