forked from uriklar/react-google-maps-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "@react-google-maps/root",
"version": "1.2.0-alpha.11",
"private": true,
"description": "@react-google-maps API integration",
"license": "MIT",
"author": {
"name": "Alexey Lyakhov",
"email": "justfly1984@gmail.com",
"url": "https://github.com/JustFly1984"
},
"contributors": [
"Ignat Awwit <ignatius.awwit@gmail.com> (https://github.com/awwit)",
"Uri Klar <uriklar@gmail.com> (https://github.com/uriklar)"
],
"repository": {
"type": "git",
"url": "https://github.com/JustFly1984/react-google-maps-api"
},
"scripts": {
"publish": "cd packages/react-google-maps-api && npm run build && cd ../.. && lerna publish",
"build:api": "cd packages/react-google-maps-api && npm run build && cd ../.. ",
"build:gatsby": "cd packages/react-google-maps-api-gatsby-example && yarn && yarn build && cd ../..",
"build:docs": "cd packages/react-google-maps-api && yarn && yarn docs:build && cd ../..",
"start:gatsby": "cd packages/react-google-maps-api-gatsby-example && yarn start"
},
"lint-staged": {
"linters": {
"*.{js|ts|tsx}": [
"npx eslint --fix",
"tsc --noEmit",
"git add -A"
]
}
},
"devDependencies": {
"husky": "1.3.1",
"lerna": "3.13.0",
"lint-staged": "8.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}