This repository has been archived by the owner on Mar 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
131 lines (131 loc) · 3.7 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@handsontable/react",
"version": "4.0.0",
"description": "Best Data Grid for React with Spreadsheet Look and Feel.",
"author": "Handsoncode <hello@handsoncode.net> (https://handsoncode.net)",
"homepage": "https://handsontable.com",
"license": "MIT",
"main": "./commonjs/react-handsontable.js",
"module": "./es/react-handsontable.js",
"jsdelivr": "./dist/react-handsontable.min.js",
"unpkg": "./dist/react-handsontable.min.js",
"types": "./index.d.ts",
"keywords": [
"handsontable",
"component",
"grid",
"data",
"table",
"data table",
"data grid",
"spreadsheet",
"sheet",
"excel",
"enterprise",
"sort",
"formulas",
"filter",
"search",
"conditional",
"formatting",
"csv",
"react",
"reactjs",
"react component",
"react grid",
"wrapper"
],
"repository": {
"type": "git",
"url": "https://github.com/handsontable/react-handsontable.git"
},
"bugs": {
"url": "https://github.com/handsontable/react-handsontable/issues"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^24.0.9",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/react-redux": "^7.1.7",
"babel-core": "^7.0.0-bridge.0",
"cpy-cli": "^3.1.1",
"cross-env": "^5.2.0",
"del-cli": "^3.0.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"handsontable": "^8.0.0",
"jest": "^25.1.0",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"rollup": "^1.17.0",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.22.1",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^3.5.3",
"uglify-js": "^3.4.9"
},
"peerDependencies": {
"handsontable": ">=8.0.0"
},
"scripts": {
"build": "npm run delete-build && npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:min",
"build:commonjs": "cross-env NODE_ENV=cjs rollup -c",
"build:umd": "cross-env NODE_ENV=umd rollup -c",
"build:es": "cross-env NODE_ENV=es rollup -c",
"build:min": "cross-env NODE_ENV=min rollup -c",
"delete-build": "del-cli ./es/ && del-cli ./commonjs/ && del-cli ./dist/ && del-cli ./*.d.ts",
"publish-build": "npm publish",
"publish-all": "npm run build && npm run publish-build && npm run delete-build",
"test": "jest",
"watch:commonjs": "cross-env NODE_ENV=cjs rollup -c --watch",
"watch:es": "cross-env NODE_ENV=es rollup -c --watch"
},
"jest": {
"testURL": "http://localhost/",
"setupFiles": [
"./test/jestsetup.ts"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"^.+\\.tsx?$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"testRegex": "(/test/(.*).(test|spec)).(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"tsConfig": "test-tsconfig.json",
"babelConfig": true
}
}
}
}