-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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": "@transmute/cose",
"version": "0.3.0",
"description": "COSE and related work.",
"main": "./dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc -b",
"test": "jest",
"coverage": "jest --ci --coverage",
"lint": "eslint ./src ./test --fix",
"shove": "git add -A; git commit -m ':rocket:'; git push origin main",
"iana:assignments": "npx ts-node ./scripts/make-iana-assignments.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transmute-industries/cose.git"
},
"author": "Orie Steele",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/transmute-industries/cose/issues"
},
"homepage": "https://github.com/transmute-industries/cose#readme",
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"axios": "^1.6.7",
"better-sqlite3": "^11.3.0",
"csv-parser": "^3.0.0",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"moment": "^2.30.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@peculiar/x509": "^1.9.7",
"@transmute/rfc9162": "^0.0.5",
"cbor-web": "^9.0.2",
"jose": "^4.14.4"
}
}