-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.33 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
{
"name": "@renovatebot/osv-offline-monorepo",
"private": true,
"workspaces": [
"./packages/*"
],
"version": "0.0.0-semantic-release",
"repository": {
"type": "git",
"url": "https://github.com/renovatebot/osv-offline.git"
},
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"eslint": "eslint .",
"start": "cross-env TS_NODE_PROJECT=./tsconfig.packages.json ts-node ./packages/osv-offline-updater/src/index.ts",
"release": "multi-semantic-release --ignore-packages=packages/osv-offline-updater",
"test": "run-s eslint test:unit test:integration",
"test:unit": "jest --testPathPattern=unit.spec.ts",
"test:integration": "jest --testPathPattern=int.spec.ts --runInBand"
},
"devDependencies": {
"@qiwi/multi-semantic-release": "7.1.2",
"@tsconfig/node18": "18.2.4",
"@tsconfig/strictest": "1.0.2",
"@types/eslint": "8.56.12",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"cross-env": "7.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-promise": "6.6.0",
"expect-more-jest": "5.5.0",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"npm-run-all2": "6.2.6",
"ts-jest": "29.2.5"
}
}