-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 KB
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": "create-node-package",
"version": "1.0.0",
"description": "Generates a node module template with CHANGELOG, build, deployment, jest, linter and more. All configured and ready to use.",
"main": "bin/cli.js",
"bin": {
"create-node-package": "./bin/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanMat/create-node-package.git"
},
"keywords": [
"cli",
"node-module-template"
],
"author": "DanMat <dannymatthew@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanMat/create-node-package/issues"
},
"homepage": "https://github.com/DanMat/create-node-package#readme",
"dependencies": {
"chalk": "^4.1.0",
"check-folder-exists": "^0.1.1",
"mkdirp": "^1.0.4",
"npm-name": "^6.0.1",
"prompts": "^2.4.0",
"validate-npm-package-name": "^3.0.0",
"yeoman-environment": "^2.10.3",
"yeoman-generator": "^4.12.0"
},
"devDependencies": {
"auto": "^10.5.0"
},
"auto": {
"plugins": [
"npm"
],
"onlyPublishWithReleaseLabel": true
}
}