-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.27 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
{
"name": "generator-derby",
"version": "1.1.1",
"description": "Yeoman generator for Derby 0.6 projects",
"license": "MIT",
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git://github.com/derbyparty/generator-derby.git"
},
"bugs": "https://github.com/derbyparty/generator-derby/issues",
"author": {
"name": "Artur Zayats",
"email": "[email protected]",
"url": "https://github.com/zag2art"
},
"maintainers": [
{
"name": "Artur Zayats",
"email": "[email protected]",
"url": "https://github.com/zag2art"
}
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "jshint test app/index.js component/index.js && mocha"
},
"licenses": [
{
"type": "MIT"
}
],
"keywords": [
"yeoman-generator",
"derby",
"scaffoling tool",
"derbyjs",
"derby 0.6"
],
"dependencies": {
"yeoman-generator": "~0.16.0",
"chalk": "~0.4.0",
"yosay": "^0.1.0",
"update-notifier": "~0.2.0"
},
"devDependencies": {
"async": "^0.9.0",
"coffeelint": "^1.5.2",
"derby-jade": "^0.6.7",
"jshint": "^2.5.1",
"jsonlint": "^1.6.0",
"mocha": "*",
"recess": "^1.1.9",
"stylus": "^0.46.3"
},
"peerDependencies": {
"yo": ">=1.0.0"
}
}