-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "@litert/otp",
"version": "1.0.1",
"description": "The OTP support library of LiteRT.",
"main": "lib/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 lib examples",
"typecheck": "tsc -p . --noEmit",
"lint": "eslint --ext ts src",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litert/otp.js.git"
},
"bugs": {
"url": "https://github.com/litert/otp.js/issues"
},
"homepage": "https://github.com/litert/otp.js#readme",
"keywords": [
"litert",
"lrt",
"authentication",
"security",
"otp"
],
"author": "Angus.Fenying <fenying@litert.org> (https://fenying.net)",
"license": "Apache-2.0",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.7.15",
"@litert/eslint-plugin-rules": "^0.1.0",
"husky": "^8.0.1",
"typescript": "^4.3.4"
},
"dependencies": {
"@litert/encodings": "^2.2.0"
}
}