This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.58 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
{
"name": "@litert/tls-sni",
"version": "1.0.0",
"description": "A TLS SNI(Server Name Indication) library for Node.js.",
"main": "./libs/index.js",
"scripts": {
"prepublishOnly": "npm run rebuild",
"build": "echo Using TypeScript && tsc -v && tsc -p .",
"build-watch": "echo Using TypeScript && tsc -v && tsc -w -p .",
"rebuild": "npm run clean && npm run lint && npm run build",
"test": "echo See directory src/examples",
"clean": "rm -rf libs examples test",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint --ext ts src"
},
"keywords": [
"litert",
"lrt",
"tls",
"sni"
],
"author": "Angus.Fenying <[email protected]> (https://fenying.net)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/litert/tls-sni.js.git"
},
"bugs": {
"url": "https://github.com/litert/tls-sni.js/issues"
},
"homepage": "https://github.com/litert/tls-sni.js#readme",
"types": "./libs/index.d.ts",
"typings": "./libs/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"husky": "^4.3.8",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=10.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint && npm run typecheck"
}
},
"dependencies": {
"@litert/exception": "^1.0.0"
}
}