-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.09 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.09 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
{
"name": "my-json-react",
"version": "0.0.2",
"description": "Transform a plain javascript object or json string in a react component.",
"main": "dist/myJsonReact.js",
"scripts": {
"dev": "webpack-dev-server --config webpack-website.config.js --env.debug=1",
"build:website": "webpack --config webpack-website.config.js --env.debug=0",
"build:lib": "webpack --config webpack.config.js --env.debug=0",
"test": "jest --watch --env=jsdom"
},
"author": "David Casado <dcasadomartinez@gmail.com> (http://buhoprogramador.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davidnotplay/my-json-react.git"
},
"bugs": {
"url": "https://github.com/davidnotplay/my-json-react/issues"
},
"keywords": [
"react", "json", "render", "library"
],
"homepage": "https://davidnotplay.github.io/my-json-react",
"contributors": [],
"dependencies": {
"is-plain-object": "^2.0.4"
},
"devDependencies": {
"@blueprintjs/core": "^2.1.1",
"@blueprintjs/icons": "^2.1.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"node-sass": "^4.8.3",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-json-view": "^1.16.1",
"react-test-renderer": "^15.6.2",
"react-transition-group": "^2.3.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
}
}