-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.28 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
49
50
{
"name": "@tussle/storage-pool",
"version": "0.7.10",
"description": "Tussle storage which pools multiple tussle storage services",
"main": "dist-cjs/index.js",
"types": "dist-types/index.d.ts",
"module": "dist-es/index.js",
"files": [
"dist-cjs",
"dist-types",
"dist-es"
],
"scripts": {
"build-old": "run-s clean build:tsc",
"build": "concurrently 'yarn:build:es' 'yarn:build:types' 'yarn:build:cjs'",
"build:es": "tsc -p tsconfig.es.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"build:tsc": "tsc -b",
"watch": "tsc -b --watch",
"clean": "rimraf dist-cjs dist-types dist-es coverage tsconfig.tsbuildinfo",
"test": "jest"
},
"author": "Mark Riedesel <[email protected]>",
"license": "MIT",
"dependencies": {
"rxjs": "^7"
},
"devDependencies": {
"@cloudflare/workers-types": "^4",
"@miniflare/r2": "^2.14.0",
"@miniflare/storage-memory": "^2.14.0",
"@tussle/spec": "^0.7.9",
"@types/jest": "^29.2.3",
"concurrently": "^7.6.0",
"jest": "^29.2.2",
"jest-environment-miniflare": "^2.14.0",
"nock": "^13.2.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@tussle/core": "^0.7.0"
},
"publishConfig": {
"access": "public"
}
}