-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.57 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": "@ltonetwork/http-message-signatures",
"version": "0.0.0",
"description": "Implementation of the IETF HTTP Message Signatures draft standard",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint -c .eslintrc ./src/**/*.ts ./test/**/*.ts",
"lint:fix": "npm run lint --silent -- --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "npm run build",
"preversion": "npm run lint",
"test": "mocha -r ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ltonetwork/http-message-signatures.git"
},
"keywords": [
"http-message-signatures",
"message-signatures",
"signature"
],
"contributors": [
"Daniel Hensby",
"LTO Network"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/ltonetwork/http-message-signatures/issues"
},
"files": [
"src/",
"lib/"
],
"homepage": "https://github.com/ltonetwork/http-message-signatures#readme",
"devDependencies": {
"@ltonetwork/lto": "^0.11.1",
"@tsconfig/node12": "^1.0.11",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"chai": "^4.3.7",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"prettier": "^2.8.7",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}