forked from vldmkr/cose-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "cose-js",
"version": "0.8.3",
"description": "JavaScript COSE implementation",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf coverage/ .nyc_output/ lib/",
"pretest": "semistandard --fix",
"test": "pwd & ava ./test/*.js",
"coverage": "nyc npm test",
"coveragehtml": "nyc report -r html",
"precoveragehtml": "npm run coverage",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"live": "live-server -q --port=4003 --ignorePattern='(js|css|png)$' coverage",
"watch": "watch 'npm run coveragehtml' test lib",
"dev": "npm-run-all -p --silent watch live",
"build": "babel src -d lib",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erdtman/COSE-JS.git"
},
"keywords": [
"COSE",
"Signing",
"MAC",
"Encrypt",
"IoT"
],
"author": "Samuel Erdtman",
"contributors": [
{
"name": "Joe Hildebrand",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/erdtman/cose-js/issues"
},
"homepage": "https://github.com/erdtman/cose-js#readme",
"dependencies": {
"@noble/curves": "1.1.0",
"aes-cbc-mac": "^1.0.1",
"any-promise": "^1.3.0",
"cbor": "^8.1.0",
"elliptic": "^6.4.0",
"node-hkdf-sync": "^1.0.0",
"node-rsa": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.25.3",
"ava": "^3.15.0",
"base64url": "^3.0.1",
"jsonfile": "^2.4.0",
"jwk-to-pem": "^2.0.5",
"live-server": "*",
"npm-run-all": "*",
"nyc": "^15.1.0",
"semistandard": "^16.0.1",
"watch": "*"
},
"engines": {
"node": ">=12.0"
}
}