-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "generator-microcebus",
"version": "0.2.3",
"description": "Yeoman generator for opinionated WordPress app",
"homepage": "https://github.com/micjamking/generator-microcebus",
"main": "app/index.js",
"license": "MIT",
"author": {
"name": "Mike King",
"email": "[email protected]",
"url": "http://mikeking.io"
},
"repository": {
"type": "git",
"url": "https://github.com/micjamking/generator-microcebus.git"
},
"bugs": {
"url": "https://github.com/micjamking/generator-microcebus/issues"
},
"scripts": {
"test": "mocha --timeout 15000 --reporter spec",
"preversion": "npm test",
"postversion": "git push --tags",
"deploy": "git push"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"web",
"app",
"WordPress",
"Foundation",
"grunt"
],
"dependencies": {
"chalk": "^1.0.0",
"git-clone": "^0.1.0",
"github": "^0.2.1",
"replace": "^0.3.0",
"wp-cli": "0.0.5",
"yeoman-generator": "^0.20.3",
"yosay": "^1.0.2"
},
"devDependencies": {
"mocha": "*",
"rimraf": "^2.4.3"
}
}