-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "@convenience/create-creator",
"version": "1.0.1",
"description": "a simple to generate node projects.",
"main": "./lib/index.js",
"bin": {
"create-creator": "./bin/index.js"
},
"scripts": {
"test": "npm run test:lint && npm run test:integration && npm run test:coverage",
"test:unit": "tape tests/unit/lib/*.test.js tests/unit/lib/tasks/*.test.js | tap-spec",
"test:integration": "tape ./tests/integration/*.test.js | tap-spec",
"test:coverage": "nyc --check-coverage --lines 100 --functions 100 --branches 100 --reporter=html --reporter=text --reporter=text-summary npm run test:unit",
"test:lint": "standard ./lib/**/*.js ./tests/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holmok/convenience-create-creator"
},
"keywords": [
"node.js",
"generator",
"create",
"templates"
],
"author": "christopher holmok <christopher@holmok.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/holmok/convenience-create-creator/issues"
},
"homepage": "https://github.com/holmok/convenience-create-creator#readme",
"devDependencies": {
"nyc": "^14.1.1",
"proxyquire": "^2.1.0",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"standard": "^12.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.10.1"
},
"dependencies": {
"chalk": "^2.4.2",
"debug": "^4.1.1",
"execa": "^1.0.0",
"git-user-info": "^1.0.1",
"glob": "^7.1.4",
"handlebars": "^4.1.2",
"inquirer": "^6.3.1",
"mkdirp": "^0.5.1"
}
}