forked from schrodinger/fixed-data-table-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.75 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "fixed-data-table-2",
"version": "0.7.6",
"description": "A React table component designed to allow presenting thousands of rows of data.",
"main": "main.js",
"peerDependencies": {
"react": ">=0.13.0 || ^0.14.0-beta3",
"react-dom": ">=0.14.0 || ^0.14.0-beta3"
},
"devDependencies": {
"aphrodite": "^0.5.0",
"autoprefixer": "^5.0.0",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-rewire": "^1.0.0-rc-4",
"babel-plugin-syntax-trailing-function-commas": "^6.8.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"bundle-loader": "^0.5.2",
"chai": "^3.5.0",
"css-loader": "^0.9.1",
"extract-text-webpack-plugin": "^0.3.8",
"faker": "^2.1.2",
"file-loader": "^0.8.1",
"glob": "^4.3.5",
"html-loader": "^0.2.3",
"jsdom": "^9.6.0",
"less": "^2.2.0",
"less-loader": "^2.0.0",
"marked": "^0.3.2",
"mocha": "^2.5.3",
"mocha-loader": "^1.0.0",
"mocha-webpack": "^0.4.0",
"null-loader": "^0.1.0",
"postcss": "^4.0.2",
"postcss-custom-properties": "3.0.1",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dimensions": "^1.3.0",
"react-docgen": "^1.2.0",
"react-dom": "^15.3.2",
"react-tools": "^0.12.2",
"react-tooltip": "^3.2.1",
"sinon": "^2.0.0-pre.2",
"style-loader": "^0.8.3",
"url-loader": "^0.5.5",
"webpack": "^1.8.3",
"webpack-dev-server": "^1.8.0"
},
"scripts": {
"site-dev-server": "./build_helpers/startSiteDevServer.sh",
"site-build": "./build_helpers/buildStaticSite.sh",
"build-dist": "./build_helpers/buildDist.sh",
"build-npm": "./build_helpers/buildNPMInternals.sh",
"build-docs": "./build_helpers/buildAPIDocs.sh",
"publish-site": "./build_helpers/publishStaticSite.sh",
"publish-package": "./build_helpers/publishPackage.sh",
"test": "mocha-webpack --webpack-config webpack.config-test.js \"src/**/*-test.js\" --require build_helpers/test-globals.js",
"test:watch": "mocha-webpack --webpack-config webpack.config-test.js --watch \"src/**/*-test.js\" --require build_helpers/test-globals.js",
"test:server": "webpack-dev-server --config webpack.config-test.js --hot --inline"
},
"repository": {
"type": "git",
"url": "https://github.com/schrodinger/fixed-data-table-2.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/schrodinger/fixed-data-table-2/issues"
},
"homepage": "http://schrodinger.github.io/fixed-data-table-2",
"tags": [
"react",
"table"
],
"keywords": [
"react",
"react-component",
"table",
"data-table",
"fixed-table"
]
}