-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
78 lines (78 loc) · 2.11 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
{
"name": "react-svg-map",
"version": "2.2.0",
"description": "A set of React.js components to display an interactive SVG map",
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --config webpack.examples.config.js",
"build": "webpack --mode production",
"lint": "eslint src/*.js* src/maps/*.js",
"test": "jest",
"build-demo": "webpack --mode production --config webpack.examples.config.js && cp examples/dist/* docs",
"build-tests": "jest -u",
"prepare": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VictorCazanave/react-svg-map.git"
},
"keywords": [
"react",
"component",
"svg",
"interactive",
"map",
"checkbox",
"radiobutton"
],
"author": "Victor Cazanave <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/VictorCazanave/react-svg-map/issues"
},
"homepage": "https://github.com/VictorCazanave/react-svg-map#readme",
"files": [
"/src",
"/lib"
],
"devDependencies": {
"@svg-maps/australia": "^1.1.0",
"@svg-maps/france.regions": "^1.1.0",
"@svg-maps/taiwan.main": "^1.0.0",
"@svg-maps/usa": "^1.1.0",
"@svg-maps/usa.utah": "^1.1.0",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.4",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^4.19.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-react": "^7.17.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.4",
"mini-css-extract-plugin": "^0.2.0",
"node-sass": "^4.13.0",
"react": "16.1.0",
"react-dom": "16.1.0",
"react-test-renderer": "16.1.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}