-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.59 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.59 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
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
{
"name": "eddyson-react-grid",
"version": "1.0.0-rc-2",
"description": "Redux Compatible React Grid Component",
"main": "index.js",
"files": [
"dist",
"index.js",
"lib",
"README",
"LICENSE"
],
"repository": "https://github.com/eddyson-de/react-grid",
"scripts": {
"prepublish": "eslint index.js lib && rollup -c && NODE_ENV=production rollup -c && BABEL_ENV=distribution webpack --config webpack.documentation.config.js",
"dev": "webpack -p --config webpack.dev-server.config.js && webpack-dev-server --config webpack.dev-server.config.js --progress --profile --colors --hot",
"test": "BABEL_ENV=test node $NODE_DEBUG_OPTION node_modules/mocha/bin/_mocha --require babel-core/register --recursive --require ./test/setup.js",
"testw": "BABEL_ENV=test node $NODE_DEBUG_OPTION node_modules/mocha/bin/_mocha --require babel-core/register --recursive --watch --require ./test/setup.js",
"cover": "BABEL_ENV=test babel-node node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha -- --recursive --require ./test/setup.js",
"eslint": "eslint index.js lib",
"docu-build": "node_modules/.bin/babel-external-helpers > build/helpers.js && NODE_ENV=production BABEL_ENV=distribution webpack -p --config webpack.documentation.config.js",
"docu-dev": "BABEL_ENV=devserver webpack-dev-server --config webpack.documentation.config.js --progress --profile --colors --hot",
"docu-publish": "npm run docu-build && node_modules/gh-pages/bin/gh-pages -d build",
"check-for-only-in-tests": "! grep \\\\.only test/*"
},
"pre-commit": [
"eslint",
"check-for-only-in-tests"
],
"keywords": [
"React",
"Grid",
"Data",
"Table"
],
"author": "eddyson GmbH",
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.7",
"react-prop-types": "0.4.0",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-syntax-object-rest-spread": "6.13.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-modules-umd": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "6.24.1",
"chai": "4.1.2",
"chai-enzyme": "1.0.0-beta.0",
"coveralls": "3.0.0",
"css-loader": "0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "4.13.1",
"eslint-plugin-react": "7.5.1",
"faker": "^4.1.0",
"file-loader": "1.1.5",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.28.0",
"istanbul": "1.1.0-alpha.1",
"jsdom": "11.5.1",
"material-ui": "next",
"material-ui-icons": "^1.0.0-alpha.3",
"mocha": "4.0.1",
"mocha-jsdom": "1.1.0",
"pre-commit": "^1.2.2",
"prismjs": "^1.6.0",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-bootstrap": "^0.31.0",
"react-dom": "^16.0.0",
"react-hot-loader": "3.1.3",
"react-prism": "^4.3.0",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-syntax-highlighter": "^5.5.2",
"react-tap-event-plugin": "^3.0.2",
"rollup": "0.52.1",
"rollup-plugin-babel": "^3.0.1",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.0",
"sinon": "^4.1.2",
"style-loader": "0.19.0",
"url-loader": "0.6.2",
"webpack": "3.8.1",
"webpack-dev-server": "2.7.1",
"yargs": "10.0.3"
}
}