-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "domain-info",
"version": "0.1.2",
"keywords": [
"domain",
"dns",
"dig",
"whois",
"client",
"punycode",
"promise"
],
"description": "Simple domain information tool",
"main": "index.js",
"types": "lib/domain-info.d.ts",
"repository": "kazu69/domain-info",
"homepage": "https://github.com/kazu69/domain-info",
"dependencies": {
"@types/node": "^10.9.4",
"@types/tldjs": "^1.7.1",
"es6-promise": "^4.0.5",
"native-dns": "^0.7.0",
"tldjs": "^1.6.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-typescript": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@netflix/tslint-config": "^1.0.1",
"ava": "^3.5.1",
"nyc": "^15.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts",
"fix-lint": "tslint --fix -c tslint.json src/**/*.ts",
"test": "nyc ava lib/*.test.js",
"type-check": "tsc --noEmit",
"build-types": "tsc --emitDeclarationOnly",
"build-js": "babel src --out-dir lib --extensions \".ts\"",
"build": "npm run build-types && npm run build-js && npm run posttest",
"clean": "rm -rf lib",
"prebuild": "npm run clean",
"pretest": "npm run build-js",
"posttest": "rm -rf lib/*.test.js && rm -rf lib/*.test.d.ts"
},
"author": "kazu69",
"license": "MIT"
}