-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "table-boy",
"version": "1.0.7",
"description": "A simple to use react table, which gives you lots of functions outta box",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel lib -d build",
"lint": "eslint lib",
"lint:watch": "esw -w lib/**",
"prepublish": "npm run build",
"prettify": "prettier --write \"lib/**/*.{js,scss,css,json}\" "
},
"lint-staged": {
"*.{js,scss,css}": [
"npm run prettify",
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/shanshaji/table-boy.git"
},
"keywords": [
"react-table",
"table-boy",
"react-table-without-jquery"
],
"author": "Shan Shaji the Great <[email protected]> (https://github.com/shanshaji)",
"license": "ISC",
"bugs": {
"url": "https://github.com/shanshaji/table-boy/issues"
},
"homepage": "https://github.com/shanshaji/table-boy#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^5.2.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"polished": "^1.9.2",
"prettier": "1.15.3",
"prop-types": "^15.6.1",
"styled-components": "^3.2.6"
},
"dependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1",
"reactstrap": "^6.0.1"
}
}