-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.36 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
42
43
44
45
46
47
48
{
"name": "@klowner/tussle",
"description": "summon your own tus daemon",
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"scripts": {
"test": "run-s test:unit",
"test:unit": "yarn jest",
"coverage": "jest --coverage --ci --detectOpenHandles --maxWorkers=2",
"build": "run-s clean && yarn build:lib",
"build:lib": "lerna run build --scope '@tussle/*'",
"watch": "lerna run build --scope '@tussle/*' --watch",
"bootstrap": "lerna exec yarn install",
"clean": "lerna run --parallel clean",
"release": "lerna publish",
"lint": "eslint packages/*/src",
"version": "yarn install && git stage yarn.lock"
},
"keywords": [],
"author": "Mark Riedesel <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"coveralls": "^3.1.1",
"eslint": "^9.3.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-rxjs": "^5.0.3",
"jest": "^29.2.2",
"lerna": "^6.0.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^5.4.5"
},
"resolutions": {
"trim-newlines": "^4.0.0"
},
"private": true
}