-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "ip2nfo",
"description": "IP2 geolocation web server",
"version": "1.2.3",
"main": "lib/app.js",
"bin": {
"ip2nfo": "bin/ip2nfo"
},
"directories": {
"bin": "bin",
"lib": "lib",
"test": "test"
},
"scripts": {
"release:patch": "npm version patch -m \"v%s\" && npm publish",
"release:minor": "npm version minor -m \"v%s\" && npm publish",
"release:major": "npm version major -m \"v%s\" && npm publish",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -m \"[skip ci] chore: updating changelog\"",
"lint": "semistandard \"lib/**/*.js\" --fix",
"mocha": "mocha ./test/*.test.js",
"test": "npm run lint && nyc npm run mocha",
"start": "node lib/app.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/honzahommer/ip2nfo.git"
},
"author": "Honza Hommer <honza@hommer.cz>",
"homepage": "https://github.com/honzahommer/ip2nfo#README",
"license": "MIT",
"engines": {
"node": ">= 8"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"semistandard": {
"env": [
"mocha"
]
},
"dependencies": {
"@ip2.bin/db11liteipv6": "^1.0.1",
"async-ip2location": "^8.1.3",
"cli": "^1.0.1",
"config": "^3.2.2",
"debug": "^4.1.1",
"express": "^4.17.1",
"helmet": "^3.21.1",
"http-errors": "^1.7.3",
"ip": "^1.1.5"
},
"devDependencies": {
"chai": "^4.2.0",
"husky": "^3.0.3",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"semistandard": "^14.0.1",
"supertest": "^4.0.2"
}
}