-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.44 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.44 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
{
"name": "projection-grid-react",
"version": "0.0.4",
"description": "",
"main": "dist/index",
"files": [
"src",
"dist",
"jsdoc",
"test"
],
"scripts": {
"demo": "webpack && cd demo && webpack",
"build": "webpack --profile --json > stats.json",
"eslint": "eslint --ext .js src",
"test": "jest --setupTestFrameworkScriptFile=raf/polyfill",
"prepublishOnly": "yarn run build && yarn run jsdoc",
"jsdoc": "jsdoc -c ./jsdoc.config.json -d ./jsdoc",
"dev": "cd demo && webpack-dev-server --hot --inline --colors --config ./webpack.dev.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projection-grid/projection-grid-react.git"
},
"keywords": [
"react",
"projection",
"grid",
"table",
"component"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/projection-grid/projection-grid-react/issues"
},
"homepage": "https://github.com/projection-grid/projection-grid-react#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bootstrap": "^3.3.7",
"css-loader": "^0.28.8",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-wait": "^1.0.9",
"eslint": "^4.15.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jest": "^21.6.1",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.5.1",
"file-loader": "^1.1.6",
"jest": "^22.0.5",
"jsdoc": "^3.5.5",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"rc-pagination": "^1.14.0",
"rc-select": "^7.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-octicon": "^3.0.1",
"react-test-renderer": "^16.2.0",
"source-map-loader": "^0.2.3",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.10.1"
},
"dependencies": {
"projection-grid-core": "0.2.6"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage-report"
}
}