-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.55 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
{
"name": "@ninetynine/react-table",
"version": "1.1.1",
"description": "A package that provides a managed React table for both static and dynamic data",
"author": "Dexter Marks-Barber <dexter@marks-barber.co.uk>",
"license": "LGPL-3.0-only",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run js:build",
"js:build": "node ./node_modules/@babel/cli/bin/babel src/ --out-dir dist/",
"js:lint": "standard",
"js:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ninetynine/react-table.git"
},
"keywords": [
"react",
"table",
"data table",
"html",
"dynamic",
"ajax",
"react-dom",
"react-use",
"component",
"static"
],
"bugs": {
"url": "https://github.com/ninetynine/react-table/issues"
},
"homepage": "https://github.com/ninetynine/react-table#readme",
"husky": {
"hooks": {
"pre-commit": "npm run js:lint && npm run js:build && git add dist"
}
},
"standard": {
"ignore": [
"dist"
]
},
"peerDependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"dependencies": {
"classnames": "^2.2.6",
"core-js": "3",
"prop-types": "^15.7.2",
"react-use": "^13.27.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-preset-minify": "^0.5.1",
"husky": "^4.2.3",
"standard": "^14.3.3"
}
}