-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "ripestat",
"version": "1.0.4",
"description": "A fully featured client for the RIPE Stat Api.",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/JoshGlazebrook/ripestat"
},
"bugs": {
"url": "https://github.com/JoshGlazebrook/ripestat/issues"
},
"keywords": ["ripestat", "ripe", "ris", "asn", "prefix", "ipv4", "ipv6", "apnic", "arin", "lacnic", "afrinic"],
"scripts": {
"lint": "tslint -p tslint.json",
"test": "NODE_ENV=test mocha --recursive --timeout 30000 --compilers ts:ts-node/register test/**.ts",
"build": "tslint -p tslint.json & prettier --parser=typescript --single-quote --print-width 150 --write ./src/**/*.ts && tsc -p .",
"prepublish": "npm run build"
},
"author": "Josh Glazebrook",
"license": "MIT",
"typings": "typings",
"dependencies": {
"rest": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/deep-diff": "^0.0.30",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.9",
"chai": "^4.1.0",
"deep-diff": "^0.3.8",
"mocha": "^3.4.2",
"object-no-new-keys": "^1.0.3",
"ts-node": "^3.2.1",
"typescript": "^2.4.2"
}
}