-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
93 lines (93 loc) · 1.87 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
{
"name": "parse-function",
"version": "5.3.1",
"description": "Parse a function into an object using espree, acorn or babylon parsers. Extensible through Smart Plugins",
"repository": {
"type": "git",
"url": "https://github.com/tunnckoCore/opensource.git",
"directory": "packages/parse-function"
},
"homepage": "https://tunnckocore.com/opensource",
"author": "Charlike Mike Reagent <[email protected]> (https://tunnckocore.com)",
"license": "MPL-2.0",
"engines": {
"node": ">=8.11"
},
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"keywords": [
"args",
"arguments",
"async",
"async-await",
"asyncawait",
"await",
"babel",
"developer-experience",
"development",
"dx",
"fn",
"func",
"function",
"generators",
"hela",
"parameters",
"params",
"parse",
"parse-function",
"parser",
"tostring",
"tunnckocore-oss",
"tunnckocorehq",
"typescript",
"utilities"
],
"scripts": {},
"dependencies": {
"@types/babel__core": "^7.1.3",
"@babel/parser": "^7.6.4",
"@babel/types": "^7.6.3"
},
"devDependencies": {
"acorn": "^7.1.0",
"acorn-loose": "^7.0.0",
"arrify": "^2.0.1",
"define-property": "^2.0.2",
"espree": "^6.1.1",
"for-in": "^1.0.2"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"licenseStart": 2016,
"verb": {
"readme": "../../readme-template.md",
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 4
},
"layout": "empty",
"tasks": [
"readme"
],
"lint": {
"reflinks": true
},
"reflinks": [
"acorn",
"babylon",
"define-property",
"espree"
],
"related": {
"list": []
}
}
}