forked from iExecBlockchainComputing/iexec-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.92 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
109
110
111
112
113
114
{
"name": "iexec",
"version": "7.2.0",
"description": "iExec SDK",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"test": "jest --coverage --runInBand --detectOpenHandles --forceExit",
"build": "npm run generate-dist && npm run generate-packages && npm run generate-doc",
"generate-dist": "./node_modules/.bin/babel src --out-dir dist --copy-files",
"generate-packages": "node generatePackages.js",
"generate-doc": "./node_modules/typedoc/bin/typedoc --tsconfig tsconfig.doc.json --disableSources"
},
"bin": {
"iexec": "./dist/cli/cmd/iexec.js"
},
"files": [
"dist/",
"src/",
"iexec_sdk_logo.jpg",
"IExec/",
"IExecAccountModule/",
"IExecAppModule/",
"IExecConfig/",
"IExecDatasetModule/",
"IExecDealModule/",
"IExecHubModule/",
"IExecModule/",
"IExecENSModule/",
"IExecNetworkModule/",
"IExecOrderModule/",
"IExecOrderbookModule/",
"IExecResultModule/",
"IExecStorageModule/",
"IExecWalletModule/",
"IExecWorkerpoolModule/",
"IExecTaskModule/",
"errors/",
"utils/",
"IExecSecretsModule/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iExecBlockchainComputing/iexec-sdk.git"
},
"author": "iExec",
"license": "ISC",
"bugs": {
"url": "https://github.com/iExecBlockchainComputing/iexec-sdk/issues"
},
"homepage": "https://github.com/iExecBlockchainComputing/iexec-sdk#readme",
"dependencies": {
"@iexec/erlc": "^1.0.0",
"@iexec/poco": "^5.3.0",
"@types/bn.js": "^5.1.0",
"aes-js": "3.1.2",
"bn.js": "^5.2.1",
"buffer": "^6.0.2",
"commander": "^9.3.0",
"cross-fetch": "^3.1.5",
"debug": "^4.3.4",
"ethers": "^5.6.8",
"fs-extra": "^10.1.0",
"image-size": "^1.0.1",
"inquirer": "^8.2.4",
"is-docker": "^2.2.1",
"jszip": "^3.10.0",
"multiaddr": "^10.0.1",
"node-rsa": "^1.1.1",
"ora": "^5.4.1",
"prettyjson": "^1.2.5",
"query-string": "^7.1.1",
"rlc-faucet-contract": "^1.0.10",
"semver": "^7.3.7",
"update-check": "^1.5.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"typedoc": "^0.22.17",
"typedoc-plugin-markdown": "^3.12.1",
"typedoc-plugin-missing-exports": "^0.22.6",
"typedoc-plugin-rename-defaults": "^0.4.0",
"typescript": "^4.7.3",
"web3-eth": "^1.7.3"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "12.0.0",
"browsers": [
"defaults",
"not IE 11"
]
}
}
]
]
},
"jest": {
"testEnvironment": "node"
}
}