-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"name": "@readme/ssri",
"version": "4.0.0",
"description": "Standard Subresource Integrity library -- parses, generates, and verifies integrity metadata according to the SRI spec.",
"license": "MIT",
"author": "ReadMe <support@readme.io> (https://readme.com)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "https://github.com/readmeio/ssri.git"
},
"bugs": {
"url": "https://github.com/readmeio/ssri/issues"
},
"scripts": {
"build": "tsc",
"format": "npm run prettier && npx biome check --write",
"lint": "biome check",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"pretest": "npm run lint",
"prettier": "prettier --list-different --write \"./**/**.{js,ts}\"",
"test": "vitest --coverage"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@readme/standards": "^2.4.0",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.1.2",
"prettier": "^3.0.3",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"prettier": "@readme/standards/prettier"
}