-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "react-gmaps",
"version": "1.0.0",
"description": "A react component for a google map!",
"main": "index.js",
"scripts": {
"dev": "node_modules/.bin/webpack-dev-server --output-public-path=/public/",
"build": "node_modules/.bin/webpack -p",
"test": "mocha test/Gmap.test.js --opts test/mocha.opts"
},
"repository": {
"type": "git",
"url": "react-gmap"
},
"keywords": [
"react",
"google",
"maps"
],
"author": "Daniel Andrews",
"license": "ISC",
"dependencies": {
"webpack": "^2.6.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-load-script": "0.0.4"
},
"devDependencies": {
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"enzyme": "^2.8.2",
"jsdom": "^11.0.0",
"mocha": "^3.4.2",
"react-test-renderer": "^15.5.4",
"webpack-dev-server": "^2.4.5",
"webpack-dotenv-plugin": "^2.0.0"
}
}