forked from yeoman/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.61 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
{
"name": "yeoman-generator",
"version": "0.16.0",
"description": "Rails-inspired generator system that provides scaffolding for your apps",
"license": "BSD",
"keywords": [
"development",
"dev",
"build",
"tool",
"cli",
"scaffold",
"generate"
],
"homepage": "http://yeoman.io",
"bugs": "https://github.com/yeoman/generator/issues",
"author": "Chrome Developer Relations",
"main": "main.js",
"repository": {
"type": "git",
"url": "git://github.com/yeoman/generator.git"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "gulp",
"doc": "jsdoc -c ./jsdoc.json ./readme.md",
"test-generator": "mocha test/generators/*.js --reporter spec --timeout 100000"
},
"dependencies": {
"cheerio": "~0.13.0",
"rimraf": "~2.2.0",
"diff": "~1.0.4",
"mime": "~1.2.9",
"underscore.string": "~2.3.1",
"lodash": "~2.4.1",
"mkdirp": "~0.3.5",
"glob": "~3.2.0",
"debug": "~0.7.2",
"isbinaryfile": "~2.0.0",
"dargs": "~0.1.0",
"async": "~0.2.8",
"inquirer": "~0.4.0",
"iconv-lite": "~0.2.10",
"shelljs": "~0.2.6",
"findup-sync": "~0.1.2",
"chalk": "~0.4.0",
"text-table": "~0.2.0",
"download": "~0.1.6",
"request": "~2.33.0",
"file-utils": "~0.2.0",
"class-extend": "~0.1.0",
"grouped-queue": "~0.1.2"
},
"devDependencies": {
"proxyquire": "~0.5.1",
"sinon": "~1.7.3",
"coveralls": "~2.6.0",
"gulp": "~3.3.4",
"gulp-mocha": "~0.2.0",
"gulp-jshint": "~1.3.2",
"jshint-stylish": "~0.1.4",
"gulp-jscs": "~0.2.1",
"gulp-istanbul": "~0.1.0"
}
}