This repository was archived by the owner on Jul 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.06 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.06 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "charlike-cli",
"description": "Small CLI layer for the [charlike][] project scaffolder, requires charlike@^1.7",
"license": "Apache-2.0",
"licenseStart": "2018",
"scripts": {
"lint": "eslint src test cli.js --cache --fix --quiet --format codeframe",
"test": "nyc --require esm asia -R codeframe",
"commit-dry": "git status --porcelain && git add -A && gitcommit -sS",
"precommit": "lint-staged && yarn test",
"commit": "yarn commit-dry"
},
"engines": {
"node": "^8.11.0 || ^10.12.0"
},
"dependencies": {
"@tunnckocore/package-json": "^2.0.0",
"charlike": "^3.0.0",
"esm": "^3.0.84",
"mri": "^1.1.1"
},
"devDependencies": {
"all-contributors-cli": "^6.0.0",
"asia": "^0.19.7",
"docks": "^0.7.0",
"eslint": "^6.0.0",
"eslint-config-esmc": "^1.0.12",
"gitcommit": "^1.0.9",
"husky": "^3.0.0",
"lint-staged": "^9.0.0",
"new-release": "^5.0.0",
"nyc": "^14.0.0"
},
"files": [
"src",
"index.js",
"cli.js"
],
"bin": {
"charlike": "cli.js"
},
"main": "index.js",
"module": "src/index.js",
"typings": "src/index.d.ts",
"version": "0.0.0-semantically-released",
"repository": "tunnckoCoreLabs/charlike-cli",
"homepage": "https://github.com/tunnckoCoreLabs/charlike-cli",
"author": "Charlike Mike Reagent (https://tunnckocore.com)",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"eslintConfig": {
"extends": "esmc"
},
"renovate": {
"extends": "tunnckocore"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 4
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"asia",
"charlike",
"docks",
"gitcommit",
"new-release",
"parse-commit-message"
]
},
"lint": {
"reflinks": true
},
"reflinks": [
"charlike",
"new-release",
"semantic-release"
]
}
}