-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.03 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 4.03 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "react-hydra-client",
"version": "0.1.2",
"description": "ReactJS Hydra client component",
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"scripts": {
"analyze": "webpack src/index.js dist/react-hydra-client.js -p --bail --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"build": "npm run build:lib && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib --ignore __tests__",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore __tests__",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/react-hydra-client.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-hydra-client.min.js",
"clean": "rimraf dist lib es",
"lint": "eslint src",
"format": "prettier-eslint \"+(src|examples)/**/*.+(js|js.flow)\" --ignore \"**/bundle.js\" --write --no-semi --single-quote --trailing-comma=none",
"prepublish": "npm run lint && npm run test:cov && npm run clean && npm run build",
"test": "cross-env NODE_ENV=test jest --runInBand",
"test:watch": "npm test -- --watch",
"test:cov": "npm run test -- --coverage"
},
"keywords": [],
"keywords": [
"hydra",
"component",
"react",
"react-component"
],
"author": "Kev Kirkland",
"homepage": "https://github.com/dataunity/react-hydra-client",
"repository": {
"type": "git",
"url": "https://github.com/dataunity/react-hydra-client.git"
},
"bugs": {
"url": "https://github.com/dataunity/react-hydra-client/issues"
},
"license": "AGPL",
"dependencies": {
"deep-equal": "^1.0.1",
"es6-error": "^4.0.0",
"hoist-non-react-statics": "^2.3.1",
"invariant": "^2.2.2",
"is-promise": "^2.1.0",
"lodash": "^4.17.3",
"lodash-es": "^4.17.3",
"prop-types": "^15.5.9",
"redux-thunk": "^2.1.0",
"react-dropzone": "^3.13.3",
"jsonld": "^0.4.12"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-es2015-no-commonjs": "^0.0.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"codecov.io": "^0.1.6",
"cross-env": "^5.0.5",
"eslint": "^4.6.1",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.54.0",
"flux-standard-action": "^1.0.0",
"jest": "^21.0.2",
"lodash-webpack-plugin": "^0.11.2",
"prettier": "^1.6.1",
"prettier-eslint-cli": "^4.3.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"rifraf": "^2.0.3",
"rimraf": "^2.5.4",
"stringstream": "^0.0.5",
"tmp": "0.0.33",
"webpack": "^3.5.6",
"webpack-bundle-analyzer": "^2.9.0",
"redux-logger": "^3.0.6"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0",
"react-redux": "^4.3.0 || ^5.0.0",
"redux": "^3.0.0",
"redux-form": "^7.0.0",
"react-router-dom": "^4.2.2"
},
"files": [
"README.md",
"es",
"lib",
"dist",
"*.js.flow"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/__tests__/**/*.js"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"testRegex": "__tests__/.*\\.spec\\.js$",
"testEnvironment": "jsdom"
}
}