-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "reacttable",
"version": "0.2.0",
"description": "React Table is a simple, light-weight table built on React. It makes no assumptions about your data and allows the user to define how the table reacts to pagination, filtering and sorting.",
"main": "dist/react-table.js",
"files": [
"dist/react-table.js",
"dist/styles/style.css",
"LICENSE"
],
"scripts": {
"start": "gulp",
"dist": "gulp lib lib-styles",
"build": "gulp build",
"build-example": "gulp webpack:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adi2412/react-table.git"
},
"keywords": [
"React",
"Table"
],
"author": {
"name": "Aditya Raisinghani",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/adi2412/react-table/issues"
},
"homepage": "https://github.com/adi2412/react-table#readme",
"dependencies": {
"react": "^15.3.2"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"expose-loader": "0.7.1",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-sass": "2.3.2",
"node-sass": "3.10.1",
"react-dom": "15.3.2",
"uglify-js": "1.3.5",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.2"
}
}