forked from schrodinger/fixed-data-table-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.96 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
85
86
87
88
89
90
91
{
"name": "fixed-data-table-2",
"version": "0.8.16",
"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"
},
"dependencies": {
"create-react-class": "^15.5.2",
"prop-types": "^15.5.8"
},
"devDependencies": {
"aphrodite": "^0.5.0",
"autoprefixer": "^7.1.2",
"babel-core": "^6.11.4",
"babel-loader": "^7.1.1",
"babel-plugin-rewire": "^1.0.0-rc-4",
"babel-plugin-syntax-trailing-function-commas": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"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",
"except": "^0.1.3",
"extract-text-webpack-plugin": "^3.0.0",
"faker": "^2.1.2",
"file-loader": "^0.11.2",
"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": "5.2.0",
"mocha-loader": "^1.0.0",
"mocha-webpack": "1.0.0-rc.1",
"null-loader": "^0.1.0",
"postcss": "^6.0.8",
"postcss-custom-properties": "^6.1.0",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dimensions": "^1.3.0",
"react-docgen": "^2.15.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": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"scripts": {
"webpack": "webpack",
"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"
]
}