-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "@litert/signatures",
"version": "3.1.0",
"description": "A signatures library based on Node.js crypto module.",
"main": "./lib/index.js",
"scripts": {
"prepublishOnly": "npm run rebuild && npm test && 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": "mocha",
"clean": "rm -rf lib test examples",
"typecheck": "tsc -p . --noEmit",
"lint": "eslint --ext ts src",
"prepare": "husky install"
},
"keywords": [
"signature",
"hmac",
"rsa",
"ecdsa",
"verify"
],
"author": "Angus.Fenying <fenying@litert.org> (https://fenying.net)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/litert/signatures.js.git"
},
"bugs": {
"url": "https://github.com/litert/signatures.js/issues"
},
"homepage": "https://github.com/litert/signatures.js#readme",
"types": "./lib/index.d.ts",
"typings": "./lib/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^13.2.0",
"@litert/encodings": "^2.2.0",
"@types/mocha": "^8.2.2",
"@types/node": "^16.11.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"husky": "^7.0.4",
"mocha": "^9.0.1",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=12.0.0"
}
}