-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 1.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@microlinkhq/geolocation",
"homepage": "https://geolocation.microlink.io",
"version": "1.0.0",
"author": {
"email": "hello@microlink.io",
"name": "microlink.io",
"url": "https://microlink.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microlinkhq/geolocation.git"
},
"bugs": {
"url": "https://github.com/microlinkhq/geolocation/issues"
},
"keywords": [
"api",
"geolocation",
"microlink"
],
"dependencies": {
"countries-list": "~3.1.0",
"currency-codes": "github:osdiab/currency-codes",
"is-european": "~1.0.6",
"iso-3166": "~4.2.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@ksmithut/prettier-standard": "latest",
"ava": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"is-ip": "~5.0.1",
"nano-staged": "latest",
"simple-git-hooks": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"scripts": {
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"postinstall": "node scripts/postinstall.js",
"prerelease": "npm run update:check && npm run contributors",
"test": "ava"
},
"private": true,
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"nano-staged": {
"*.js": [
"prettier-standard",
"standard --fix"
],
"*.md": [
"standard-markdown"
],
"package.json": [
"finepack"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
},
"type": "module"
}