-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.45 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.45 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@streamr/test-utils",
"version": "103.3.1",
"description": "A collection of shared test utilities",
"repository": {
"type": "git",
"url": "git+https://github.com/streamr-dev/network.git",
"directory": "packages/test-utils"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.cjs",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./setupCustomMatchers": {
"types": "./dist/setupCustomMatchers.d.ts",
"node": "./dist/setupCustomMatchers.cjs",
"import": "./dist/setupCustomMatchers.js",
"require": "./dist/setupCustomMatchers.cjs",
"default": "./dist/setupCustomMatchers.js"
},
"./customMatchers": {
"types": "./dist/customMatchers.d.ts",
"node": "./dist/customMatchers.cjs",
"import": "./dist/customMatchers.js",
"require": "./dist/customMatchers.cjs",
"default": "./dist/customMatchers.js"
}
},
"typesVersions": {
"*": {
"customMatchers": [
"dist/customMatchers.d.ts"
],
"setupCustomMatchers": [
"dist/setupCustomMatchers.d.ts"
]
}
},
"files": [
"dist",
"!dist/src",
"!*.tsbuildinfo",
"LICENSE",
"README.md"
],
"scripts": {
"prebuild": "npm run reset-self",
"build": "tsc -b",
"postbuild": "NODE_OPTIONS='--import tsx' rollup -c rollup.config.mts",
"check": "tsc -p tsconfig.jest.json",
"reset-self": "rimraf --glob 'dist/**/*.tsbuildinfo'",
"clean": "jest --clearCache --config '{}' || true; rm -rf dist *.tsbuildinfo node_modules/.cache || true",
"test": "jest",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'"
},
"author": "Streamr Network AG <contact@streamr.network>",
"license": "Apache-2.0",
"dependencies": {
"@streamr/config": "^5.9.2",
"@streamr/network-contracts": "^9.1.0",
"@streamr/utils": "103.3.1",
"cors": "^2.8.5",
"ethers": "^6.13.0",
"express": "^5.2.0",
"jest": "^30.2.0",
"jest-matcher-utils": "^30.0.5",
"lodash": "^4.17.23"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.1",
"rimraf": "^6.1.2",
"rollup": "^4.55.1",
"rollup-plugin-dts": "^6.3.0",
"tsx": "^4.21.0"
}
}