-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
67 lines (67 loc) · 1.56 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": "pollinate",
"description": "Generate a new project directly from Git(Hub) using a simple schema.",
"version": "2.11.0",
"homepage": "http://github.com/howardroark/pollinate",
"author": {
"name": "howardroark",
"email": "[email protected]",
"url": "https://github.com/howardroark"
},
"scripts": {
"test": "mocha tests/*",
"test-ci": "./node_modules/jslint/bin/jslint.js lib/**/*.js tests/**/*.js *.js && ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha tests/*",
"lint": "jslint '**/*.js'"
},
"main": "lib/index.js",
"license": "Unlicence",
"repository": "howardroark/pollinate",
"keywords": [
"yeoman",
"nunjucks",
"generator",
"scaffold",
"template",
"github",
"git"
],
"engines": {
"node": ">=4"
},
"dependencies": {
"async": "^2.1.4",
"cli-argparse": "^1.1.0",
"commander": "^2.9.0",
"cpr": "^3.0.1",
"extend": "^3.0.0",
"globby": "^8.0.1",
"gunzip-maybe": "^1.3.1",
"hjson": "^3.1.1",
"is-directory": "^0.3.1",
"mkdirp": "^0.5.1",
"mv": "^2.1.1",
"node-dir": "^0.1.11",
"nunjucks": "^3.0.0",
"ospath": "^1.2.2",
"prompt": "^1.0.0",
"request": "^2.69.0",
"rimraf": "^2.5.2",
"tar-fs": "^1.9.0",
"uuid": "^3.0.1",
"valid-url": "^1.0.9"
},
"bin": "./bin.js",
"files": [
"LICENSE",
"README.md",
"bin.js",
"lib"
],
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"jslint": "^0.10.3",
"mocha": "^2.4.5"
}
}