-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.29 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
{
"name": "use-table-tools",
"version": "1.0.2",
"description": "react hook for building powerful table components",
"author": "David Alekna <[email protected]>",
"license": "MIT",
"main": "./lib/index.cjs.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "https://github.com/davidalekna/use-table-tools.git"
},
"bugs": {
"url": "https://github.com/davidalekna/use-table-tools/issues"
},
"homepage": "https://github.com/davidalekna/use-table-tools#readme",
"keywords": [
"react",
"table",
"react table",
"table tools",
"list table",
"file table",
"data table",
"data grid",
"react grid"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "npm run bundle",
"clean": "rimraf -r dist coverage lib",
"bundle": "rollup -c ./config/rollup.config.js",
"predeploy": "npm run build",
"deploy": "cd dist && npm publish --tag beta",
"test": "jest --coverage",
"test:watch": "jest --watch",
"start": "yarn docz:dev",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve",
"report-coverage": "codecov",
"format": "pretty-quick --pattern \"./packages/**/*.*(js|ts|tsx)\""
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-node-resolve": "^8.0.0",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.2.0",
"@testing-library/react-hooks": "^3.3.0",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"codecov": "^3.7.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.12.0",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"tslib": "^2.0.0"
}
}