-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "@unly/boilerplate-generator",
"version": "1.0.0",
"description": "easily create startup project template",
"main": "index.js",
"scripts": {
"start": "node index.js",
"doc:toc": "yarn markdown-toc --maxdepth 4 -i README.md",
"lint": "eslint . --cache --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/UnlyEd/boilerplate-generator.git"
},
"bugs": {
"url": "https://github.com/UnlyEd/boilerplate-generator/issues"
},
"homepage": "https://github.com/UnlyEd/boilerplate-generator",
"bin": {
"unly-boilerplate-generator": "./index.js"
},
"author": "unlyEd",
"license": "MIT",
"dependencies": {
"fs-extra": "7.0.1",
"inquirer": "6.2.0",
"klaw-sync": "6.0.0"
},
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"markdown-toc": "1.2.0"
},
"keywords": [
"template",
"project"
],
"files": [
"templates",
"index",
"lib",
"README"
]
}