This repository was archived by the owner on May 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.98 KB
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
{
"name": "@ohtomi/react-handsontable-hoc",
"version": "0.6.6",
"description": "A higher order component of react-handsontable",
"keywords": [
"react",
"handsontable",
"sort-column",
"hide-columns",
"filter-rows"
],
"homepage": ".",
"bugs": {
"url": "https://github.com/ohtomi/react-handsontable-hoc/issues"
},
"license": "MIT",
"author": "Kenichi Ohtomi",
"files": [
"dist/**/!(*.test.js|*.spec.js|__tests__|__snapshots__)"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ohtomi/react-handsontable-hoc.git"
},
"scripts": {
"start": "cross-env SKIP_PREFLIGHT_CHECK=true react-scripts start",
"build-examples": "cross-env SKIP_PREFLIGHT_CHECK=true react-scripts build",
"test": "cross-env SKIP_PREFLIGHT_CHECK=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build": "rimraf dist && mkdirp dist && NODE_ENV=production babel src/lib --out-dir dist/ --source-maps --copy-files --ignore **/*.test.js --ignore **/*.spec.js --ignore __tests__ --ignore __snapshots__",
"flow": "flow",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@handsontable/react": "^2.1.0",
"handsontable": "^6.2.2",
"numbro": "2.1.0",
"shallow-equal-props": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@storybook/addon-actions": "^5.1.8",
"@storybook/addon-links": "^5.1.8",
"@storybook/react": "^5.1.8",
"cross-env": "^5.2.0",
"flow-bin": "^0.102.0",
"flow-typed": "^2.2.3",
"lodash": "^4.17.13",
"mkdirp": "^0.5.1",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-scripts": "3.0.1",
"rimraf": "^2.6.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"greenkeeper": {
"ignore": [
"@handsontable/react",
"handsontable"
]
},
"module": "dist/index.js"
}