-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.22 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
{
"version": "1.2.2",
"description": "Pivot table",
"engines": {
"node": ">=8.x"
},
"keywords": [
"apitable",
"widgets",
"apitable widgets"
],
"main": "./dist/index",
"module": "./dist/index",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"test": "jest",
"start": "widget-cli start",
"release": "widget-cli release",
"postinstall": "patch-package"
},
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.test.(t|j)s"
]
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"dependencies": {
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@apitable/components": "latest",
"@apitable/icons": "^1.4.0",
"@apitable/widget-sdk": "^1.4.0",
"ali-react-table": "2.6.1",
"dayjs": "^1.10.7",
"lodash": "^4.17.21",
"typescript": "4.1.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node": "^16.4.10",
"jest": "^27.5.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"ts-jest": "^27.1.3"
}
}