-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 946 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 946 Bytes
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
{
"name": "@fae/generator-plugin",
"version": "1.0.1",
"description": "Generator for Fae plugins",
"author": "Chad Engler <[email protected]>",
"license": "MIT",
"main": "generators/index.js",
"homepage": "https://github.com/Fae/generator-plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/Fae/generator-plugin.git"
},
"bugs": {
"url": "https://github.com/Fae/generator-plugin/issues"
},
"scripts": {
"lint": "eslint generators/ test/",
"test": "mocha test/"
},
"keywords": [
"generator",
"fae",
"renderer",
"plugin",
"yeoman-generator"
],
"files": [
"generators/"
],
"dependencies": {
"yeoman-generator": "^0.24.1",
"chalk": "^1.1.3",
"yosay": "^1.2.0"
},
"devDependencies": {
"@englercj/code-style": "^1.0.6",
"yeoman-test": "^1.4.0",
"yeoman-assert": "^2.2.1",
"eslint": "^3.3.1",
"mocha": "^3.0.2"
}
}