-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.34 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@golem-sdk/task-executor",
"version": "1.0.0",
"description": "A golem-js based library allowing running computation tasks on Golem, designed for batch map-reduce like scenarios",
"repository": "https://github.com/golemfactory/golem-sdk-task-executor",
"keywords": [
"golem",
"network",
"distributed",
"computing",
"sdk",
"internet",
"computer",
"task-executor",
"task",
"executor",
"golem-js",
"glm"
],
"publishConfig": {
"access": "public"
},
"workspaces": [
"examples"
],
"type": "commonjs",
"main": "dist/task-executor.cjs.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/task-executor.mjs",
"require": "./dist/task-executor.cjs.js"
}
},
"browser": "dist/task-executor.min.js",
"module": "dist/task-executor.mjs",
"types": "dist/index.d.ts",
"jsdelivr": "dist/task-executor.min.js",
"unpkg": "dist/task-executor.min.js",
"scripts": {
"build": "rollup -c --forceExit",
"dev": "rollup -c -w",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --config jest.config.json",
"test:e2e": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --config tests/e2e/jest.config.json tests/e2e/**.spec.ts --runInBand --forceExit",
"test:cypress": "cypress run",
"test:examples": "tsx tests/examples/examples.test.ts",
"test:import": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config tests/import/jest.config.js",
"lint": "npm run lint:ts && npm run lint:ts:tests && npm run lint:eslint",
"lint:ts": "tsc --project tsconfig.json --noEmit",
"lint:ts:tests": "tsc --project tests/tsconfig.json --noEmit",
"lint:eslint": "eslint .",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install"
},
"files": [
"dist"
],
"author": "GolemFactory <[email protected]>",
"license": "LGPL-3.0",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@golem-sdk/golem-js": "^3.4.2",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@johanblumenberg/ts-mockito": "^1.0.43",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.14",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cross-env": "^7.0.3",
"cypress": "^13.13.2",
"cypress-log-to-output": "^1.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"pino": "^8.21.0",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"rollup": "^4.19.2",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-visualizer": "^5.12.0",
"semantic-release": "^23.1.1",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"tsconfig-paths": "^4.2.0",
"tslint-config-prettier": "^1.18.0",
"tsx": "^4.16.5",
"typescript": "^5.5.4"
}
}