|
1 | 1 | {
|
2 | 2 | "name": "create-wp-site",
|
3 |
| - "version": "0.1.1", |
4 |
| - "description": "Create WordPress site with 10up/wp-local-docker", |
| 3 | + "version": "0.1.4", |
| 4 | + "description": "Create local WordPress development with 10up/wp-local-docker", |
5 | 5 | "bin": {
|
6 |
| - "create-wp-site": "bin/create-wp-site" |
| 6 | + "create-wp-site": "bin/create-wp-site" |
7 | 7 | },
|
8 | 8 | "main": "lib/cli.js",
|
9 | 9 | "scripts": {
|
10 |
| - "clean": "rimraf lib", |
11 |
| - "build": "npm run clean && cross-env BABEL_ENV=commonjs babel src --out-dir lib", |
12 |
| - "pre-publish": "npm run clean && npm run build", |
13 |
| - "version": "npm run build && git add -A .", |
14 |
| - "watch": "npm run clean && nodemon --watch src --exec \"npm run build\"", |
15 |
| - "format": "prettier --trailing-comma es5 --single-quote --write 'src/*/*.js' 'src/*/!(node_modules)/**/*.js'", |
16 |
| - "lint": "npm run format && eslint --fix --config .eslintrc src" |
| 10 | + "clean": "rimraf lib", |
| 11 | + "build": "npm run clean && cross-env BABEL_ENV=commonjs babel src --out-dir lib", |
| 12 | + "pre-publish": "npm run clean && npm run build", |
| 13 | + "version": "npm run build && git add -A .", |
| 14 | + "watch": "npm run clean && nodemon --watch src --exec \"npm run build\"", |
| 15 | + "format": "prettier --trailing-comma es5 --single-quote --write 'src/*/*.js' 'src/*/!(node_modules)/**/*.js'", |
| 16 | + "lint": "npm run format && eslint --fix --config .eslintrc src" |
17 | 17 | },
|
18 |
| - "author": "Ivan Kristianto", |
| 18 | + "repository": "ivankristianto/create-wp-site", |
| 19 | + "keywords": [ |
| 20 | + "wordpress", |
| 21 | + "docker", |
| 22 | + "cli" |
| 23 | + ], |
| 24 | + "author": "Ivan Kristianto <ivan@ivankristianto.com>", |
19 | 25 | "license": "MIT",
|
20 | 26 | "dependencies": {
|
21 |
| - "archiver": "^1.3.0", |
22 |
| - "chalk": "^1.1.3", |
23 |
| - "cheerio": "^0.22.0", |
24 |
| - "commander": "2.9.0", |
25 |
| - "cross-spawn": "^5.0.1", |
26 |
| - "fs-extra": "3.0.1", |
27 |
| - "glob-all": "^3.1.0", |
28 |
| - "hostile": "^1.3.0", |
29 |
| - "inquirer": "^3.0.6", |
30 |
| - "js-yaml": "^3.8.4", |
31 |
| - "mkdirp": "^0.5.1", |
32 |
| - "open": "0.0.5", |
33 |
| - "parse-github-repo-url": "^1.3.0", |
34 |
| - "promzard": "^0.3.0", |
35 |
| - "read": "^1.0.7", |
36 |
| - "read-chunk": "^2.0.0", |
37 |
| - "request": "^2.79.0", |
38 |
| - "rimraf": "^2.5.4", |
39 |
| - "semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", |
40 |
| - "shelljs": "^0.7.6", |
41 |
| - "string-template": "^1.0.0", |
42 |
| - "temp": "^0.8.3", |
43 |
| - "yamljs": "^0.2.10" |
| 27 | + "archiver": "^1.3.0", |
| 28 | + "chalk": "^1.1.3", |
| 29 | + "cheerio": "^0.22.0", |
| 30 | + "commander": "2.9.0", |
| 31 | + "cross-spawn": "^5.0.1", |
| 32 | + "fs-extra": "3.0.1", |
| 33 | + "glob-all": "^3.1.0", |
| 34 | + "hostile": "^1.3.0", |
| 35 | + "inquirer": "^3.0.6", |
| 36 | + "js-yaml": "^3.8.4", |
| 37 | + "mkdirp": "^0.5.1", |
| 38 | + "open": "0.0.5", |
| 39 | + "parse-github-repo-url": "^1.3.0", |
| 40 | + "promzard": "^0.3.0", |
| 41 | + "read": "^1.0.7", |
| 42 | + "read-chunk": "^2.0.0", |
| 43 | + "request": "^2.79.0", |
| 44 | + "rimraf": "^2.5.4", |
| 45 | + "semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", |
| 46 | + "shelljs": "^0.7.6", |
| 47 | + "string-template": "^1.0.0", |
| 48 | + "temp": "^0.8.3", |
| 49 | + "yamljs": "^0.2.10" |
44 | 50 | },
|
45 | 51 | "devDependencies": {
|
46 |
| - "babel": "^6.5.2", |
47 |
| - "babel-cli": "^6.14.0", |
48 |
| - "babel-eslint": "^7.0.0", |
49 |
| - "babel-plugin-add-module-exports": "^0.2.1", |
50 |
| - "babel-preset-es2015": "^6.14.0", |
51 |
| - "babel-preset-stage-2": "^6.13.0", |
52 |
| - "babel-register": "^6.22.0", |
53 |
| - "chai": "^3.5.0", |
54 |
| - "cross-env": "^3.0.0", |
55 |
| - "eslint": "^3.11.1", |
56 |
| - "istanbul": "^1.0.0-alpha", |
57 |
| - "mocha": "^3.2.0", |
58 |
| - "nodemon": "^1.11.0", |
59 |
| - "prettier": "^1.3.1", |
60 |
| - "sinon": "^1.17.7" |
| 52 | + "babel": "^6.5.2", |
| 53 | + "babel-cli": "^6.14.0", |
| 54 | + "babel-eslint": "^7.0.0", |
| 55 | + "babel-plugin-add-module-exports": "^0.2.1", |
| 56 | + "babel-preset-es2015": "^6.14.0", |
| 57 | + "babel-preset-stage-2": "^6.13.0", |
| 58 | + "babel-register": "^6.22.0", |
| 59 | + "chai": "^3.5.0", |
| 60 | + "cross-env": "^3.0.0", |
| 61 | + "eslint": "^3.11.1", |
| 62 | + "istanbul": "^1.0.0-alpha", |
| 63 | + "mocha": "^3.2.0", |
| 64 | + "nodemon": "^1.11.0", |
| 65 | + "prettier": "^1.3.1", |
| 66 | + "sinon": "^1.17.7" |
61 | 67 | }
|
62 | 68 | }
|
0 commit comments