forked from cheekujha/react-table-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "react-table-filter",
"version": "1.1.0",
"description": "",
"main": "lib/bundle.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/webpack",
"watch": "./node_modules/.bin/webpack --watch",
"start:dev": "webpack-dev-server --content-base ./docs --inline --hot",
"build-example": "cd examples; ../node_modules/.bin/webpack",
"run-example": "cd examples; ../node_modules/.bin/webpack-dev-server --content-base ../docs --inline --hot --config webpack.config.js",
"release": "npm run build; npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/cheekujha/react-table-filter.git"
},
"author": "cheekujha@gmail.com",
"license": "ISC",
"dependencies": {
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "6.2.5",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"lodash": "^4.17.4",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"keywords": [
"react",
"reactjs",
"react-table",
"react-table-filter",
"tablefilter",
"react-component",
"react-filter-table"
]
}