forked from zpratt/idle-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "idle-maps",
"version": "1.0.1-alpha",
"description": "React components for asynchronous google maps",
"main": "dist/idle-maps.js",
"scripts": {
"test": "eslint index.js webpack.config.js test lib examples && mocha --compilers jsx:jsx-require-extension -r ./test/helpers/jsdom.js test",
"build": "npm test && webpack index.js dist/idle-maps.js",
"release": "npm run build && COMPRESS=true webpack index.js dist/idle-maps.min.js",
"start": "npm run build && webpack examples/index.jsx examples/app.js && webpack-dev-server --no-info --content-base examples --hot --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/zpratt/idle-maps.git"
},
"keywords": [
"react",
"google-maps"
],
"author": "zach pratt",
"license": "MIT",
"bugs": {
"url": "https://github.com/zpratt/idle-maps/issues"
},
"homepage": "https://github.com/zpratt/idle-maps",
"devDependencies": {
"chai": "^2.2.0",
"eslint": "^0.17.1",
"jsdom": "^4.0.5",
"jsx-loader": "^0.12.2",
"jsx-require-extension": "^0.2.0",
"mocha": "^2.2.1",
"react": "^0.13.0",
"sinon": "^1.14.1",
"webpack": "^1.7.2",
"webpack-dev-server": "^1.7.0"
},
"peerDependencies": {
"react": "^0.13.0"
},
"dependencies": {
"async-google-maps": "^0.2.0"
}
}