-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 3.7 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "react-responsive-table",
"version": "2.0.15",
"description": "A react component for building really responsive table",
"main": "lib/index.js",
"scripts": {
"coverage": "npm test && codecov",
"build": "webpack -p --config webpack.dist.config.js && babel src --out-dir lib --ignore spec.js,test.jsx,test.js",
"build:ghpages": "node scripts/build.js",
"lint": "eslint --ext .jsx,js ./src ./examples/src",
"lint:fix": "eslint --ext .jsx,js ./src ./examples/src --fix",
"bump:patch": "npm test && npm version patch && npm run publish:site && npm run publish:demo",
"bump:minor": "npm test && npm version minor && npm run publish:site && npm run publish:demo",
"bump:major": "npm test && npm version major && npm run publish:site && npm run publish:demo",
"publish:site": "npm run build && npm publish && git push && git push --tags",
"publish:demo": "npm run build:ghpages && gh-pages -d dist/examples",
"start": "node scripts/start.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtassin/react-responsive-table.git"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"text"
],
"coverageDirectory": "coverage"
},
"nyc": {
"exclude": [
"**/*.test.js",
"node_modules"
]
},
"browserify-shim": {
"react": "global:React"
},
"keywords": [
"table",
"responsive",
"react",
"component",
"flexbox",
"form"
],
"author": "Julien TASSIN",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtassin/react-responsive-table/issues"
},
"homepage": "https://jtassin.github.io/react-responsive-table/",
"devDependencies": {
"autoprefixer": "^6.7.6",
"babel-cli": "^6.24.1",
"babel-core": "^6.23.1",
"babel-eslint": "7.1.1",
"babel-jest": "^20.0.3",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.18.0",
"case-sensitive-paths-webpack-plugin": "1.1.4",
"chai": "^4.0.2",
"chalk": "1.1.3",
"codecov": "^2.2.0",
"component-playground": "^1.3.1",
"connect-history-api-fallback": "1.3.0",
"cross-spawn": "4.0.2",
"css-loader": "0.26.0",
"detect-port": "^1.1.0",
"dotenv": "2.0.0",
"enzyme": "^2.6.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "1.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"filesize": "3.3.0",
"fs-extra": "0.30.0",
"gh-pages": "^0.11.0",
"gzip-size": "3.0.0",
"html-webpack-plugin": "^2.24.1",
"http-proxy-middleware": "0.17.2",
"jest": "^20.0.4",
"json-loader": "0.5.4",
"material-ui": "^0.17.0",
"mocha": "^3.1.0",
"path-exists": "2.1.0",
"postcss-loader": "^1.2.2",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.0",
"react-dev-utils": "^0.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-tap-event-plugin": "^2.0.1",
"react-test-renderer": "^15.6.1",
"recursive-readdir": "2.1.0",
"regenerator-runtime": "^0.10.5",
"sinon": "^1.17.6",
"strip-ansi": "3.0.1",
"style-loader": "0.13.1",
"url-loader": "^0.5.8",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.1",
"webpack-manifest-plugin": "1.1.0",
"whatwg-fetch": "^2.0.1"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^15.4.2"
},
"dependencies": {
"react-style-proptype": "^3.0.0"
}
}