This repository has been archived by the owner on Feb 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 2.36 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "hela-config-tunnckocore",
"description": "Shareable Config (preset of tasks) for [hela][] task runner",
"nspId": "e5980075-9545-47a2-b946-35ee5ba2091d",
"license": "Apache-2.0",
"licenseStart": 2017,
"scripts": {
"start": "hela",
"lint": "hela lint",
"test": "hela test",
"commit": "hela commit --no-docs",
"prepublishOnly": "hela protect"
},
"engines": {
"node": ">=8.6",
"npm": ">=5.2",
"yarn": ">=1.3"
},
"dependencies": {
"@tunnckocore/pretty-config": "^0.5.1",
"builtin-modules": "^3.0.0",
"eslint": "^6.0.0",
"eslint-config-tunnckocore": "^3.0.0",
"gitcommit": "^1.0.0",
"is-ci": "^2.0.0",
"isobject": "^4.0.0",
"loud-rejection": "^2.0.0",
"new-release": "^5.0.0",
"nyc": "^15.0.0",
"p-is-promise": "^3.0.0",
"p-map": "^3.0.0",
"pify": "^4.0.0",
"rollup": "^1.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"time-stamp": "^2.0.0"
},
"devDependencies": {
"hela": "^2.0.9",
"hela-config-tunnckocore": "3.0.26",
"mukla": "^0.4.9"
},
"files": [
"dist"
],
"eslintConfig": {
"extends": "tunnckocore"
},
"renovate": {
"extends": "tunnckocore"
},
"hela": {
"extends": "tunnckocore"
},
"rollup": {
"input": "src/index.js",
"output": [
"cjs",
"es"
]
},
"nyc": {
"statements": 0,
"functions": 0,
"branches": 0,
"lines": 0,
"exclude": [
"test"
],
"extension": [
".js",
".jsx",
".mjs"
]
},
"version": "0.0.0-semantically-released",
"repository": "tunnckoCore/hela-config-tunnckocore",
"homepage": "https://github.com/tunnckoCore/hela-config-tunnckocore",
"author": "Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)",
"cdn": "./dist/index.umd.js",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3,
"footer": ""
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"gitcommit",
"p-map",
"new-release",
"hela",
"mri"
],
"highlight": "parse-function"
},
"lint": {
"reflinks": true
},
"reflinks": [
"execa",
"hela",
"new-release",
"semantic-release"
]
}
}