forked from MicheleBertoli/react-gmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "react-gmaps",
"version": "1.6.0",
"description": "A Google Maps component for React.js",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "babel ./src --out-dir ./dist --ignore __tests__",
"pretest": "eslint ./src",
"test": "jest",
"demo": "browserify -t babelify ./demo/index.js -o ./demo/build.js",
"start": "node server"
},
"repository": {
"type": "git",
"url": "https://github.com/MicheleBertoli/react-gmaps"
},
"keywords": [
"React.js",
"Google Maps",
"react-component"
],
"author": "Michele Bertoli",
"license": "MIT",
"bugs": {
"url": "https://github.com/MicheleBertoli/react-gmaps/issues"
},
"homepage": "https://github.com/MicheleBertoli/react-gmaps",
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.0.5",
"babel-jest": "^5.3.0",
"babelify": "^5.0.4",
"browserify": "^8.1.3",
"eslint": "^1.1.0",
"eslint-plugin-react": "^3.2.1",
"express": "^4.11.2",
"jest-cli": "^12.0.0",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"jest": {
"testPathDirs": [
"./src"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/create-react-class",
"<rootDir>/node_modules/fbjs"
]
},
"dependencies": {
"create-react-class": "^15.5.2",
"object-assign": "^4.0.1"
},
"peerDependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1"
}
}