-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.86 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
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
{
"name": "@tunnckocore/scripts",
"description": "Universal and minimalist scripts & tasks runner.",
"license": "Apache-2.0",
"licenseStart": "2018",
"scripts": {
"scripts": "node cli.js",
"docs": "yarn scripts docks --outfile .verb.md && yarn scripts verb",
"lint": "yarn scripts eslint '**/*.js' --cache --fix --quiet --format codeframe",
"test-only": "node -r esm test",
"test": "yarn scripts nyc node test/index.js",
"precommit": "yarn scripts lint && yarn scripts test-only",
"commit": "yarn scripts dry",
"dry": "git add -A && git status --porcelain && yarn scripts gitcommit"
},
"engines": {
"node": "^8.10.0 || >=10.13.0"
},
"dependencies": {
"@tunnckocore/execa": "^2.2.1",
"all-module-paths": "^0.7.1",
"esm": "^3.0.84"
},
"devDependencies": {
"asia": "^1.0.0-rc.25"
},
"files": [
"src",
"index.js",
"cli.js",
"scripts.config.js"
],
"bin": {
"scripts": "cli.js",
"tunnckocore-scripts": "cli.js"
},
"main": "index.js",
"module": "src/index.js",
"typings": "src/index.d.ts",
"version": "1.2.4",
"repository": "tunnckoCoreLabs/scripts",
"homepage": "https://github.com/tunnckoCoreLabs/scripts",
"author": "Charlike Mike Reagent (https://tunnckocore.com)",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"renovate": {
"extends": "tunnckocore"
},
"eslintConfig": {
"extends": "tunnckocore"
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 4
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"asia",
"charlike",
"docks",
"gitcommit",
"new-release"
]
},
"lint": {
"reflinks": true
},
"reflinks": [
"new-release",
"semantic-release"
]
}
}