-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.08 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
{
"name": "@fabcotech/dhttps",
"version": "0.0.3",
"description": "Activate resolution of .d domains in any nodeJS runtime",
"author": "FABCO <contact@fabco.tech>",
"license": "MIT",
"homepage": "https://github.com/fabcotech/dhttps",
"repository": {
"type": "git",
"url": "git+https://github.com/fabcotech/dhttps.git"
},
"keywords": [
"https",
"webpki",
"dappy",
"rchain",
"blockchain",
"domain",
"name system",
"dns"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/",
"dist/index.d.ts",
"bin/"
],
"engines": {
"node": ">=16"
},
"scripts": {
"test": "TS_NODE_PROJECT=./tsconfig.build.json mocha -r ts-node/register 'src/**/*.spec.ts'",
"test:watch": "TS_NODE_PROJECT=./tsconfig.build.json mocha -r ts-node/register 'src/**/*.spec.ts' --watch --watch-files *.ts",
"clean:dist": "rm -rf dist",
"clean:node_modules": "rm -rf node_modules",
"build": "npm run clean:dist && tsc -b ./tsconfig.build.json",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write 'src/**/*.ts'"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.19.4",
"@types/chai": "^4.3.0",
"@types/chai-spies": "^1.0.3",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"chai-spies": "^1.0.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@fabcotech/dappy-lookup": "2.3.17"
},
"bugs": {
"url": "https://github.com/fabcotech/dappy-lookup/issues"
},
"ts-node": {
"files": true,
"compilerOptions": {
"module": "esnext",
"types": [
"node"
]
}
}
}