This repository was archived by the owner on Oct 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "@oasislabs/web3",
"version": "1.0.0",
"description": "Web3 JSON RPC compliant Oasis Gateway",
"keywords": [
"oasis",
"oasis-protocol",
"web3",
"ekiden"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oasislabs/oasis.js.git"
},
"bugs": {
"url": "https://github.com/oasislabs/oasis.js/issues"
},
"homepage": "https://github.com/oasislabs/oasis.js#readme",
"main": "dist/index.umd.js",
"module": "dist/index.es5.js",
"types": "dist/lib/src/index.d.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"author": "Oasis Labs Inc. <feedback@oasislabs.com>",
"scripts": {
"build": "yarn build:node && yarn build:browser",
"build:node": "tsc -b && rollup -c rollup/rollup.config.ts",
"build:browser": "tsc -b && rollup -c rollup/rollup.config.browser.ts",
"test": "jest",
"coverage": "jest --coverage test",
"prepublishOnly": "yarn build"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {
"@oasislabs/common": "^1.0.0",
"@oasislabs/service": "^1.0.0",
"@oasislabs/test": "^1.0.0",
"axios": "^0.19.0",
"ethers": "^4.0.27",
"eventemitter3": "^4.0.0",
"js-sha3": "^0.8.0",
"node-localstorage": "^2.1.4",
"ws": "^7.1.0"
},
"browser": {
"./dist/index.umd.js": "./dist/index.browser.umd.js",
"./dist/index.es5.js": "./dist/index.browser.es5.js"
}
}