-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "@readme/ssri",
"version": "3.0.0",
"description": "Standard Subresource Integrity library -- parses, generates, and verifies integrity metadata according to the SRI spec.",
"license": "MIT",
"author": "ReadMe <[email protected]> (https://readme.com)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/readmeio/ssri.git"
},
"bugs": {
"url": "https://github.com/readmeio/ssri/issues"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.ts",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"pretest": "npm run lint",
"prettier": "prettier --list-different --write \"./**/**.{js,ts}\"",
"test": "vitest --coverage"
},
"devDependencies": {
"@readme/eslint-config": "^14.0.0",
"@types/node": "^22.0.2",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vitest": "^2.0.5"
},
"prettier": "@readme/eslint-config/prettier"
}