forked from vaiRk/responsive-fixed-data-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.19 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
{
"name": "responsive-fixed-data-table-2",
"version": "1.0.0",
"author": "Thomas Dola <[email protected]>",
"description": "Responsive utility wrapper for Facebook's Fixed-Data-Table-2",
"main": "lib/responsive-fixed-data-table.js",
"jsnext:main": "lib/responsive-fixed-data-table.es.js",
"files": [
"lib",
"src"
],
"repository": {
"url": "https://github.com/thomasdola/responsive-fixed-data-table-2",
"type": "git"
},
"bugs": {
"url": "https://github.com/thomasdola/responsive-fixed-data-table-2/issues"
},
"keywords": [
"responsive",
"fixed-data-table-2",
"fixed-data-table",
"fluid",
"react",
"grid",
"react-component"
],
"license": "MIT",
"dependencies": {
"fixed-data-table-2": "^0.7.11",
"lodash": "^4.3.0"
},
"peerDependencies": {
"fixed-data-table-2": "^0.7.11",
"react": ">=0.14",
"react-dom": ">=0.14"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"cross-env": "^1.0.7",
"fixed-data-table": "^0.6.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"ncp": "^2.0.0",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"rimraf": "^2.5.1",
"webpack": "^1.12.13"
},
"scripts": {
"prebuild": "rimraf lib",
"build": "npm run build:umd && npm run build:umd:min && npm run build:es",
"build:umd": "cross-env BABEL_ENV=umd webpack",
"build:umd:min": "cross-env BABEL_ENV=umd NODE_ENV=production webpack",
"build:es": "ncp src/responsive-fixed-data-table-2.js lib/responsive-fixed-data-table-2.es.js",
"prepublish": "npm run build",
"test": "./node_modules/karma/bin/karma start test/karma.conf.js",
"test:debug": "./node_modules/karma/bin/karma start test/karma.conf.js --no-single-run --auto-watch --log-level debug"
}
}