forked from trbarrett/react-flexi-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.28 KB
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
{
"name": "react-flexi-table",
"version": "0.1.4",
"description": "React table component that dynamically adjusts column widths to fit content.",
"author": "LendInvest (lendinvest.com)",
"license": "MIT",
"repository": "https://github.com/lend-invest/react-flexi-table",
"homepage": "https://github.com/lend-invest/react-flexi-table",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo",
"test": "jest --no-cache"
},
"dependencies": {
"classnames": "^2.0.0",
"decimal.js-light": "^2.2.0",
"react-measure": "^2.0.0"
},
"peerDependencies": {
"react": "15.x"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"jest": "^21.2.0",
"lodash": "^4.0",
"moment": "^2.18.1",
"nwb": "0.18.x",
"nwb-sass": "^0.8.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^16.0.0"
},
"keywords": [
"react-component"
],
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
}
}
}