-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1004 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
{
"name": "skaleb-ipstack-client",
"version": "1.0.3",
"description": "A client for the IP Stack API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha",
"coverage": "nyc --reporter=lcov mocha",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"integration": "ts-node test/integration/index.spec.ts"
},
"keywords": [
"IP",
"API",
"JSON",
"ISO2",
"languages",
"geolocation"
],
"license": "ISC",
"author": "Alex Pickering",
"dependencies": {
"axios": "0.18.1"
},
"devDependencies": {
"@types/nock": "9.3.1",
"@types/chai": "4.1.7",
"@types/node": "11.9.5",
"@types/mocha": "5.2.6",
"@types/chai-as-promised": "7.1.0",
"chai": "4.2.0",
"mocha": "6.2.2",
"nock": "10.0.6",
"nyc": "13.3.0",
"ts-node": "8.0.2",
"tslint": "6.0.0-beta0",
"typescript": "3.3.3333",
"chai-as-promised": "7.1.1",
"tslint-config-standard": "9.0.0"
}
}