This repository has been archived by the owner on Feb 8, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
117 lines (117 loc) · 2.37 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
115
116
117
{
"name": "parse-function",
"version": "0.0.0-semantically-released",
"description": "Parse a function into an object using espree, acorn or babylon parsers. Extensible through Smart Plugins",
"repository": "tunnckoCore/parse-function",
"homepage": "https://github.com/tunnckoCore/parse-function",
"author": "Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)",
"nspId": "42a5e14a-70da-49ee-86e7-d1f39ed08603",
"src": "./src/**/*.js",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"scripts": {
"start": "hela",
"test": "NODE_ENV=test yarn hela test",
"build": "yarn hela build",
"release": "yarn new-release",
"precommit": "yarn hela precommit",
"commit": "yarn hela commit"
},
"license": "MIT",
"licenseStart": 2016,
"engines": {
"node": ">=6",
"npm": ">=5",
"yarn": ">=1"
},
"files": [
"dist/"
],
"dependencies": {
"arrify": "2.0.1",
"babylon": "7.0.0-beta.47",
"define-property": "2.0.2"
},
"devDependencies": {
"acorn": "5.7.3",
"clone-deep": "4.0.1",
"eslint-config-standard-tunnckocore": "1.0.10",
"espree": "6.1.1",
"for-in": "1.0.2",
"hela": "1.1.3",
"hela-preset-tunnckocore": "0.5.19",
"husky": "3.0.9",
"mukla": "0.4.9",
"new-release": "5.0.4"
},
"keywords": [
"args",
"arguments",
"arrow",
"arrowfn",
"async",
"asyncawait",
"await",
"body",
"fn",
"fns",
"func",
"function",
"gen",
"generators",
"name",
"object",
"param",
"paramerters",
"params",
"parse",
"parse-function",
"parser",
"prop",
"regular",
"string",
"tostring",
"util"
],
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"babylon",
"acorn",
"espree",
"parse-semver",
"charlike-cli",
"hela"
],
"highlight": "hela"
},
"lint": {
"reflinks": true
},
"reflinks": [
"acorn",
"babylon",
"charlike",
"charlike-cli",
"define-property",
"espree",
"execa",
"function-arguments",
"hela",
"new-release"
]
},
"release": {
"analyzeCommits": "simple-commit-message"
}
}