-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1.09 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": "tuf-js-monorepo",
"version": "0.0.0",
"private": true,
"description": "JavaScript implementation of The Update Framework (TUF)",
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "npm run clean --workspaces --if-present",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --maxWorkers=2 --coverage",
"prettier": "prettier --write packages/**/*.ts",
"prettier:check": "prettier --check packages/**/*.ts",
"lint": "eslint --fix",
"lint:check": "eslint --max-warnings 0",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@tsconfig/node16": "^16.1.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"workspaces": [
"./packages/*"
],
"engines": {
"node": "^18.17.0 || >=20.5.0"
}
}