-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.15 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.15 KB
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
{
"name": "yo",
"version": "1.0.7-pre.2",
"description": "CLI tool for scaffolding out Yeoman projects",
"license": "MIT",
"bin": {
"yo": "cli.js"
},
"repository": "yeoman/yo",
"homepage": "http://yeoman.io",
"author": "Chrome Developer Relations",
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"scripts": {
"test": "grunt"
},
"files": [
"cli.js",
"yoyo.js",
"yeoman.txt"
],
"keywords": [
"front-end",
"development",
"dev",
"build",
"web",
"tool",
"cli",
"scaffold",
"stack"
],
"dependencies": {
"yeoman-generator": "~0.15.0",
"nopt": "~2.1.1",
"lodash": "~2.4.1",
"update-notifier": "~0.1.3",
"insight": "~0.3.0",
"sudo-block": "~0.3.0",
"async": "~0.2.9",
"open": "0.0.4",
"chalk": "~0.4.0",
"findup": "~0.1.3"
},
"peerDependencies": {
"grunt-cli": "~0.1.7",
"bower": ">=0.9.0"
},
"devDependencies": {
"grunt": "~0.4.2",
"mockery": "~1.4.0",
"grunt-contrib-jshint": "~0.7.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-mocha-test": "~0.8.1"
},
"engineStrict": true,
"preferGlobal": true
}