-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.08 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
{
"name": "react-final-table",
"version": "1.5.1",
"license": "MIT",
"author": "Gabriel Abud",
"description": "React hook for headless table components",
"keywords": [
"react",
"hooks",
"typescript",
"table",
"headless",
"react-hooks"
],
"main": "dist/index.js",
"module": "dist/react-final-table.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/index.js",
"import": "./dist/react-final-table.esm.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"test:watch": "tsdx test --passWithNoTests --watch",
"test:coverage": "tsdx test --passWithNoTests --collect-coverage",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"watch": "tsdx watch"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.8",
"@testing-library/react-hooks": "^3.4.1",
"@types/faker": "^4.1.12",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"codecov": "^3.7.2",
"faker": "^4.1.0",
"husky": "^4.2.5",
"jest-environment-jsdom-sixteen": "^1.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-test-renderer": "^16.13.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Buuntu/react-final-table"
},
"bugs": {
"url": "https://github.com/Buuntu/react-final-table/issues"
},
"homepage": "https://github.com/Buuntu/react-final-table#readme",
"husky": {
"hooks": {
"pre-commit": "tsdx lint src"
}
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
},
"testEnvironment": "jest-environment-jsdom-sixteen"
}