-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.72 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
{
"name": "@streamr/browser-test-runner",
"version": "0.0.1",
"private": true,
"description": "A browser test runner for Jest tests",
"repository": {
"type": "git",
"url": "git+https://github.com/streamr-dev/network.git",
"directory": "packages/browser-test-runner"
},
"main": "./dist/exports.cjs",
"module": "./dist/exports.js",
"types": "./dist/exports.d.ts",
"files": [
"dist/exports.*",
"dist/preload.cjs",
"dist/preload.cjs.map",
"dist/karma-setup.js",
"dist/karma-setup.js.map",
"!*.tsbuildinfo",
"LICENSE"
],
"scripts": {
"prebuild": "npm run reset-self",
"build": "tsc -b",
"postbuild": "NODE_OPTIONS='--import tsx' rollup -c rollup.config.mts",
"check": "tsc --noEmit",
"reset-self": "rimraf --glob 'dist/**/*.tsbuildinfo'",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '**/*.{js,ts}'"
},
"author": "Streamr Network AG <contact@streamr.network>",
"license": "Apache-2.0",
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@jest/fake-timers": "^30.0.5",
"@rollup/plugin-node-resolve": "^16.0.3",
"buffer": "^6.0.3",
"electron": "^34.0.0",
"expect": "^30.0.5",
"jest-matcher-utils": "^30.0.5",
"jest-mock": "^30.0.5",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.1.1",
"karma-electron": "^7.3.0",
"karma-jasmine": "^5.1.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "^5.0.1",
"node-polyfill-webpack-plugin": "^4.1.0",
"rimraf": "^6.1.3",
"rollup": "^4.60.1",
"rollup-plugin-dts": "^6.4.1",
"ts-loader": "^9.5.7",
"tsx": "^4.21.0",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
}
}