This repository has been archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.81 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
{
"name": "react-tisch",
"version": "2.1.0",
"description": "Simple react component to display, filter and sort paginated tables based on react-bootstrap.",
"main": "./dist/react-tisch.js",
"scripts": {
"prepublish": "npm run build",
"build": "webpack --config webpack.config.js",
"build:watch": "webpack --config webpack.config.js --watch --progress",
"build:demo": "webpack --config webpack.config-demo.js --watch --progress",
"test": "mocha-webpack",
"test:debug": "node $NODE_DEBUG_OPTION --expose_debug_as=v8debug ./node_modules/mocha-webpack/bin/mocha-webpack",
"test:watch": "mocha-webpack --watch",
"lint": "eslint src/*.jsx test/*.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kayak/react-tisch.git"
},
"keywords": [
"react",
"bootstrap",
"table",
"react-component"
],
"author": "Remi Koenig",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kayak/react-tisch/issues"
},
"homepage": "https://github.com/kayak/react-tisch#readme",
"dependencies": {
"react": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-object-rest-spread": "<6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"enzyme": "^2.6.0",
"eslint": "^3.11.1",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-react": "^6.8.0",
"jsdom": "^9.8.3",
"mocha": "^3.2.0",
"mocha-webpack": "^0.7.0",
"react-addons-test-utils": "^15.4.1",
"webpack": "^1.14.0",
"webpack-node-externals": "^1.5.4"
}
}