-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 1.82 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "generate-cname",
"description": "Generate the CNAME file for a web project. Is this necessary? No, not at all. A CNAME file is one line and takes a couple seconds to create. The point of this generator is to automate the creation of the CNAME file based on configuration settings, as a small part of a larger build.",
"version": "1.0.0",
"homepage": "https://github.com/generate/generate-cname",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "generate/generate-cname",
"bugs": {
"url": "https://github.com/generate/generate-cname/issues"
},
"license": "MIT",
"files": [
"generator.js",
"index.js",
"templates"
],
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"engine-handlebars": "^0.8.2",
"helper-prompt": "^1.3.1",
"is-valid-app": "^0.3.0",
"prompt-confirm": "^1.2.0"
},
"devDependencies": {
"delete": "^1.1.0",
"enquirer": "^1.0.2",
"generate": "^0.14.0",
"gulp-format-md": "^1.0.0",
"mocha": "^3.4.2",
"npm-install-global": "^1.0.0"
},
"keywords": [
"boilerplate",
"build",
"cli",
"cli-app",
"cname",
"command-line",
"create",
"dev",
"development",
"framework",
"front",
"frontend",
"generate",
"generate-generator",
"generate-plugin",
"generategenerator",
"generateplugin",
"generator",
"init",
"initialize",
"new",
"plugin",
"project",
"projects",
"scaffold",
"scaffolder",
"scaffolding",
"template",
"templates",
"webapp",
"yeoman",
"yo"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
}
}
}