-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "httpbis-digest-headers",
"version": "1.0.0",
"description": "Create and verify content digests as found in HTTP headers according to draft-ietf-httpbis-digest-headers",
"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",
"prepare": "npm run build",
"preversion": "npm run lint",
"coverage": "tsc && nyc --reporter=html npm run test",
"test": "mocha -r ts-node/register test/**/*.ts"
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/interledger/httpbis-digest-headers.git"
},
"keywords": [
"http",
"content-digest",
"headers",
"ietf",
"httpbis"
],
"author": "Adrian Hope-Bailie",
"license": "MIT",
"bugs": {
"url": "https://github.com/interledger/httpbis-digest-headers/issues"
},
"homepage": "https://github.com/interledger/httpbis-digest-headers#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@tsconfig/node12": "^1.0.11",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.21",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"chai": "^4.3.6",
"eslint": "^8.24.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"structured-headers": "^0.5.0"
}
}