-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
55 lines (55 loc) · 1.18 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
{
"name": "cookiecutter",
"version": "1.2.2",
"description": "Pretty CLI for quickly creating boilerplate files based on templates you provide.",
"bin": {
"cookiecutter": "src/index.js"
},
"author": "mattvagni",
"license": "MIT",
"dependencies": {
"colors": "1.1.2",
"fs-extra": "3.0.1",
"inquirer": "3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattvagni/cookiecutter.git"
},
"bugs": {
"url": "https://github.com/mattvagni/cookiecutter/issues"
},
"homepage": "https://github.com/mattvagni/cookiecutter#readme",
"scripts": {
"test": "jest",
"lint": "eslint src/"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-plugin-jest": "^20.0.3",
"jest": "21.0.0"
},
"jest": {
"coverageDirectory": "./coverage",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/lib/tests/**/*.js"
],
"coverageReporters": [
"lcov",
"text-summary"
],
"testPathIgnorePatterns": [
"test-templates",
"test-templates-output"
]
},
"keywords": [
"boilerplate",
"generator",
"yeoman",
"cli",
"skeleton"
]
}