-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "{{name}}",
"version": "0.0.1",
"description": "{{description}}",
"main": "index.js",
"repository": "https://github.com/{{git}}",
"author": "{{author}}",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-standard": "^3.0.1"
},
"dependencies": {
"commander": "^2.13.0",
"consolidate": "^0.15.0",
"download-git-repo": "^1.0.2",
"ini": "^1.3.5",
"inquirer": "^5.0.0",
"metalsmith": "^2.3.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mz": "^2.7.0",
"ncp": "^2.0.0",
"ora": "^1.3.0",
"precommit-hook": "^3.0.0",
"request": "^2.83.0",
"rmfr": "^1.0.8",
"semver": "^5.4.1",
"swig-templates": "^2.0.2"
},
"pre-commit": [
"lint"
],
{% if !private %}
"license": "{{license}}"
{% else %}
"private": {{private}}
{% endif %}
}