-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
executable file
·84 lines (84 loc) · 2.65 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
{
"name": "drip-table-generator",
"version": "3.2.1-alpha.12",
"description": "A visualization tool for generating schema of drip-table.",
"main": "dist/index.min.js",
"module": "lib/index.js",
"unpkg": "dist/index.min.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./dist/index.css": "./dist/index.min.css",
"./dist/index.min.css": "./dist/index.min.css"
},
"scripts": {
"build": "father build",
"dev": "father dev",
"analyze": "ANALYZE=1 dumi dev",
"prepare": "yarn build && yarn lint",
"postpublish": "git push --tags",
"lint": "yarn run eslint && yarn run tslint && yarn run stylelint",
"lint:fix": "yarn run eslint:fix && yarn run stylelint:fix",
"tslint": "sh ../../bin/tslint.sh **/*.ts",
"tslint:commit": "sh ./bin/tslint.sh",
"tslint:exec": "tsc --project .tsconfig-lint.json --skipLibCheck --noEmit",
"eslint": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\" --format pretty",
"eslint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\" --format pretty --fix",
"eslint:commit": "eslint --format pretty",
"stylelint": "stylelint \"src/**/*.{less,sass,scss,css,vue}\" --custom-formatter=../../node_modules/stylelint-formatter-pretty",
"stylelint:fix": "stylelint \"src/**/*.{less,sass,scss,css,vue}\" --custom-formatter=../../node_modules/stylelint-formatter-pretty --fix",
"stylelint:commit": "stylelint --custom-formatter=../../node_modules/stylelint-formatter-pretty"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"classnames": "^2.3.2",
"domhandler": "^5.0.3",
"lodash": "^4.17.21",
"monaco-editor": "^0.34.1",
"rc-color-picker": "^1.2.6",
"react-clipboard.js": "^2.0.16",
"react-monaco-editor": "^0.51.0",
"react-quill": "^2.0.0",
"react-sortablejs": "6.1.1",
"sortablejs": "^1.15.0",
"viewerjs": "^1.11.1"
},
"devDependencies": {
"@types/sortablejs": "^1.15.0",
"babel-plugin-import": "^1.13.5",
"drip-table": "link:../drip-table",
"father": "^4.1.2",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@ant-design/icons": ">=4.3.0",
"antd": ">=4.24.0",
"drip-table": ">=3.0.0-alpha.0",
"react": ">=16.9.0"
},
"keywords": [
"DripTableGenerator",
"TableGenerator",
"Generator",
"DripTable",
"Drip Design",
"React",
"Json Schema"
],
"files": [
"README.*",
"dist",
"es",
"lib"
],
"homepage": "https://drip-table.jd.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/JDFED/drip-table/issues"
}
}