-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 892 Bytes
/
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
{
"name": "wer",
"version": "1.1.0",
"description": "Get your geolocation information",
"main": "index.js",
"repository": "bukinoshita/wer",
"author": "Bu Kinoshita <bukinoshita@gmail.com>",
"license": "MIT",
"files": [
"index.js"
],
"keywords": [
"wer",
"where",
"location",
"geolocation",
"ip"
],
"scripts": {
"test": "ava",
"lint": "xo"
},
"dependencies": {
"got": "^10.0.0"
},
"devDependencies": {
"ava": "2.4.0",
"eslint-config-prettier": "6.9.0",
"husky": "4.2.1",
"lint-staged": "10.0.2",
"prettier": "1.19.1",
"xo": "0.25.3"
},
"xo": {
"extends": [
"prettier"
]
},
"lint-staged": {
"*.js": [
"prettier --semi false --single-quote --write",
"yarn lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}