-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "create-wp-site",
"version": "0.1.5",
"description": "Create local WordPress development with 10up/wp-local-docker",
"bin": {
"create-wp-site": "bin/create-wp-site"
},
"main": "lib/cli.js",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"pre-publish": "npm run clean && npm run build",
"version": "npm run build && git add -A .",
"watch": "npm run clean && nodemon --watch src --exec \"npm run build\"",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/*/*.js' 'src/*/!(node_modules)/**/*.js'",
"lint": "npm run format && eslint --fix --config .eslintrc src"
},
"repository": "ivankristianto/create-wp-site",
"keywords": [
"wordpress",
"docker",
"cli"
],
"author": {
"name": "Ivan Kristianto",
"email": "ivan@ivankristianto.com",
"url": "https://www.ivankristianto.com"
},
"license": "MIT",
"dependencies": {
"archiver": "^1.3.0",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"commander": "2.9.0",
"cross-spawn": "^5.0.1",
"fs-extra": "3.0.1",
"glob-all": "^3.1.0",
"hostile": "^1.3.0",
"inquirer": "^3.0.6",
"js-yaml": "^3.8.4",
"mkdirp": "^0.5.1",
"open": "0.0.5",
"parse-github-repo-url": "^1.3.0",
"promzard": "^0.3.0",
"read": "^1.0.7",
"read-chunk": "^2.0.0",
"request": "^2.79.0",
"rimraf": "^2.5.4",
"semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz",
"shelljs": "^0.7.6",
"string-template": "^1.0.0",
"temp": "^0.8.3",
"yamljs": "^0.2.10"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"cross-env": "^3.0.0",
"eslint": "^3.11.1",
"istanbul": "^1.0.0-alpha",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"prettier": "^1.3.1",
"sinon": "^1.17.7"
}
}