forked from vaiRk/responsive-fixed-data-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "responsive-fixed-data-table",
"version": "1.5.0",
"author": "Viky Guerra <[email protected]>",
"description": "Responsive utility wrapper for Facebook's Fixed-Data-Table",
"main": "./lib/responsive-fixed-data-table.js",
"repository": {
"type": "git",
"url": "https://github.com/vaiRk/responsive-fixed-data-table"
},
"bugs": {
"url": "https://github.com/vaiRk/responsive-fixed-data-table/issues"
},
"keywords": [
"responsive",
"fixed-data-table",
"fluid",
"react",
"grid",
"react-component"
],
"license": "MIT",
"dependencies": {
"debounce": "^1.0.0"
},
"peerDependencies": {
"fixed-data-table": ">=0.2.0",
"react": ">=0.13"
},
"devDependencies": {
"jsx-loader": "^0.13.2",
"karma": "^0.12.36",
"karma-chrome-launcher": "^0.1.12",
"karma-jasmine": "^0.3.5",
"karma-webpack": "^1.5.1",
"react-tools": "^0.13.3",
"webpack": "^1.9.11"
},
"scripts": {
"prebuild": "rm -rf lib",
"build": "./node_modules/.bin/jsx --no-cache-dir ./src ./lib",
"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"
}
}