-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "ipblock-microservice",
"version": "1.0.0",
"description": "A \"cloud native\" service in AWS that will check if an IP address exists in a Firehol blocklist",
"main": "handler.js",
"scripts": {
"docs": "typedoc",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts' --timeout 1800000"
},
"dependencies": {
"geoip-lite": "^1.4.2",
"node-fetch": "^2.6.1",
"source-map-support": "^0.5.19",
"typedoc": "^0.19.2"
},
"devDependencies": {
"@homeservenow/serverless-event-mocks": "^1.0.5",
"@serverless/typescript": "^2.12.0",
"@types/aws-lambda": "^8.10.64",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.12",
"chai": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.0",
"mocha": "^8.2.1",
"serverless-webpack": "^5.2.0",
"ts-loader": "^8.0.10",
"ts-node": "^9.1.1",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-node-externals": "^2.5.2"
},
"author": "John Weland <john.weland@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/johnweland/ipblock-microservice.git"
},
"bugs": {
"url": "https://github.com/johnweland/ipblock-microservice/issues"
}
}