-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.42 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.42 KB
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
{
"name": "node-app-attest",
"version": "1.0.1",
"description": "A JavaScript implementation of the App Attest protocol, which checks whether clients connecting to your server are valid instances of your app.",
"repository": "https://github.com/uebelack/node-app-attest",
"author": "David Übelacker",
"license": "MIT",
"type": "module",
"main": "src/index.js",
"types": "types/index.d.ts",
"keywords": [
"apple",
"mobile",
"app-attest",
"attest",
"attestation",
"security",
"node",
"javascript"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"types": "tsc",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"format:check": "prettier --check .",
"format:write": "prettier --write ."
},
"packageManager": "yarn@4.12.0",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"dependencies": {
"asn1js": "^3.0.7",
"cbor": "^10.0.11",
"pkijs": "^3.3.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.0.1",
"@eslint/markdown": "^7.5.1",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}