This repository has been archived by the owner on Mar 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
80 lines (80 loc) · 1.88 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
73
74
75
76
77
78
79
80
{
"name": "generator-wp-make",
"version": "1.0.0",
"description": "Yeoman generator for making WordPress things.",
"license": "MIT",
"main": "lib/base.js",
"repository": "10up/generator-wp-make",
"author": {
"name": "Luke Woodward",
"email": "[email protected]",
"url": "https://github.com/lkwdwrd"
},
"contributors": [
{
"name": "Luke Woodward",
"email": "[email protected]",
"url": "https://lkwdwrd.com"
},
{
"name": "Eric Mann",
"email": "[email protected]",
"url": "https://eamann.com"
},
{
"name": "Nick Smith",
"email": "[email protected]",
"url": "https://github.com/fuhton"
},
{
"name": "Allen Moore",
"email": "[email protected]",
"url": "https://allenmoore.me/"
}
],
"engines": {
"node": ">=0.4.0"
},
"scripts": {
"pretest": "npm run lint && npm run lint:tests && npm run compile",
"test": "istanbul cover node_modules/.bin/_mocha -- --compilers js:babel-register --recursive test",
"lint": "eslint src",
"lint:tests": "eslint test",
"compile": "babel -d lib/ src/ --copy-files --source-maps both"
},
"files": [
"app"
],
"keywords": [
"wordpress",
"theme",
"plugin",
"yeoman-generator",
"generator",
"yeoman",
"templates",
"scaffold"
],
"dependencies": {
"ast-query": "^2.0.0",
"chalk": "^1.1.1",
"ejs": "^2.3.4",
"extendable-yeoman": "^0.3.0",
"lodash": "^4.15.0",
"mkdirp": "^0.5.1",
"yo-profile": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"eslint": "^3.3.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.0.2",
"mock-fs": "^3.9.0",
"mockery": "^1.7.0",
"yeoman-test": "^1.5.1"
}
}