forked from mariusandra/pigeon-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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
{
"name": "pigeon-maps",
"version": "0.13.0",
"description": "ReactJS maps without external dependencies",
"author": "Marius Andra",
"license": "MIT",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mariusandra/pigeon-maps.git"
},
"bugs": {
"url": "https://github.com/mariusandra/pigeon-maps/issues"
},
"homepage": "https://github.com/mariusandra/pigeon-maps#readme",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --history-api-fallback --hot --host 0.0.0.0 --port 4040",
"build": "npm run build:demo && npm run build:lib",
"build:demo": "node build.js production",
"build:lib": "rollup -c",
"prepublish": "npm run build:lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib",
"src",
"LICENSE.md",
"README.md"
],
"dependencies": {},
"peerDependencies": {
"prop-types": "*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-minify-dead-code-elimination": "^0.2.0",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-babel-env-inline": "^0.0.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.19",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"eslint": "^4.8.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "3.0.1",
"file-loader": "^1.1.4",
"pigeon-marker": "^0.3.3",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rollup": "^1.6.0",
"rollup-plugin-babel": "3",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
}
}