forked from wesleytodd/YeoPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 922 Bytes
/
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
{
"name": "generator-wordpress",
"version": "2.0.2",
"description": "A Yeoman generator for WordPress",
"keywords": [
"yeoman-generator",
"wordpress",
"yeoman",
"generator",
"cli"
],
"main": "app/index.js",
"author": "Wes Todd",
"license": "BSD",
"dependencies": {
"chalk": "^0.2.1",
"mkdirp": "^0.3.5",
"mysql": "^2.0.1",
"simple-git": "^0.14.0",
"wrench": "^1.4.4",
"yeoman-generator": "^0.19.2",
"wp-util": "^0.1.6"
},
"repository": {
"type": "git",
"url": "git://github.com/wesleytodd/YeoPress.git"
},
"devDependencies": {
"grunt": "~0.4.1",
"mocha": "~1.13.0",
"istanbul": "~0.1.44",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-connect": "~0.5.0",
"grunt-simple-mocha": "~0.4.0"
},
"scripts": {
"test": "node_modules/istanbul/lib/cli.js test node_modules/mocha/bin/_mocha --dir test/coverage"
}
}