forked from maxmind/GeoIP2-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.32 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
77
78
79
80
81
{
"name": "@maxmind/geoip2-node",
"version": "1.3.0",
"description": "Node.js API for GeoIP2 webservice client and database reader",
"main": "dist/src/index.js",
"homepage": "https://github.com/maxmind/GeoIP2-node",
"repository": {
"type": "git",
"url": "https://github.com/maxmind/GeoIP2-node.git"
},
"author": "MaxMind",
"license": "Apache-2.0",
"private": false,
"keywords": [
"geoip",
"geoip2",
"geoip precision",
"geoip2 precision",
"geolite",
"geolite2",
"maxmind",
"maxminddb",
"mmdb"
],
"files": ["dist"],
"types": "dist/src/index.d.ts",
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/lodash.set": "^4.3.4",
"@types/nock": "^11.1.0",
"@types/node": "^12.0.0",
"gh-pages": "^2.0.1",
"husky": "^3.0.4",
"jest": "^24.1.0",
"lint-staged": "^9.2.5",
"lodash": "^4.17.11",
"nock": "^11.3.4",
"np": "^5.0.1",
"prettier": "^1.14.3",
"ts-jest": "^24.0.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.15.0",
"typescript": "^3.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.json": ["prettier --parser json --write", "git add"],
"*.ts": [
"prettier --parser typescript --single-quote true --trailing-comma es5 --write",
"tslint -p tsconfig.lint.json -t stylish",
"git add"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist && tsc",
"build:docs": "rimraf docs && typedoc --out docs --exclude \"**/*.spec.ts\" --mode file --readme README.md && ./bin/sanitize-doc-refs.sh",
"deploy:docs": "gh-pages -d docs",
"lint": "tslint -p ./tsconfig.lint.json -t stylish",
"prettier:ts": "prettier --parser typescript --single-quote true --trailing-comma es5 --write 'src/**/*.ts'",
"prettier:ci": "prettier --parser typescript --single-quote true --trailing-comma es5 --list-different 'src/**/*.ts'",
"prettier:json": "prettier --parser json --write '**/*.json'",
"release": "yarn build && np",
"test": "jest",
"test:watch": "jest --watch",
"version": "yarn build:docs && yarn deploy:docs"
},
"dependencies": {
"camelcase-keys": "^6.0.1",
"lodash.set": "^4.3.2",
"maxmind": "^2.11.0"
}
}