-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "microgen",
"version": "1.1.4",
"description": "micro-generator for individual files, easy like sunday morning",
"bin": "index.js",
"scripts": {
"test": "./node_modules/.bin/tap test/index.js --coverage-report=text",
"lint": "./node_modules/.bin/eslint index.js",
"clean": "rm -rf test/output .nyc_output node_modules",
"fresh-test": "npm run clean && npm install && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/busterc/microgen.git"
},
"keywords": [
"generators",
"generator",
"generate",
"handlebars",
"handlebarsjs",
"cli",
"prompt",
"inquirer",
"yo",
"plop",
"templates",
"template",
"micro-generator"
],
"author": "Buster Collings <busterc@gmail.com> (https://about.me/buster)",
"license": "ISC",
"bugs": {
"url": "https://github.com/busterc/microgen/issues"
},
"homepage": "https://github.com/busterc/microgen#readme",
"dependencies": {
"fs-extra": "^7.0.0",
"handlebars": "^4.0.11"
},
"devDependencies": {
"eslint": "^5.1.0",
"eslint-config-xo-space": "^0.19.0",
"tap": "^12.0.1"
}
}