-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
52 lines (52 loc) · 1.02 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
{
"name": "json5-to-table",
"version": "0.1.8",
"description": "JSON 数据转化为表格的工具,支持深层嵌套数据,支持模式定义",
"main": "dist/bundle.js",
"bin": {
"json5-to-table": "./bin/json5-to-table"
},
"repository": "https://github.com/yetrun/json5-to-table",
"author": "[email protected]",
"license": "Apache-2.0",
"scripts": {
"build": "webpack",
"test": "ava",
"prepublish": "yarn build"
},
"ava": {
"files": [
"test/**/*.test.js"
]
},
"files": [
"CHANGELOGS",
"README.md",
"LICENSE",
"bin",
"dist"
],
"keywords": [
"nested",
"json",
"table",
"schema",
"html",
"excel",
"json-to-table"
],
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"ava": "^3.15.0",
"babel-loader": "^8.2.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"xlsx": "^0.17.1"
},
"dependencies": {
"json5": "^2.2.0",
"lodash": "^4.17.21",
"yargs": "^17.1.1"
}
}