forked from oasislabs/oasis.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "@oasislabs/gateway",
"version": "1.0.0-rc.33",
"description": "Oasis Gateway implementation used as the client backend",
"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. <[email protected]>",
"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 test",
"coverage": "jest test --coverage"
},
"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-rc.15",
"@oasislabs/service": "^1.0.0-rc.29",
"@types/uuid": "^3.4.5",
"axios": "^0.19.0"
},
"browser": {
"./dist/index.umd.js": "./dist/index.browser.umd.js",
"./dist/index.es5.js": "./dist/index.browser.es5.js"
}
}