-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "@bancor/sdk",
"version": "0.2.10",
"description": "Javascript API that provides utilities and access to the Bancor Network mainnet contracts across the different blockchains using a unified & simplified interface.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bancorprotocol/sdk.git"
},
"homepage": "https://github.com/bancorprotocol/sdk#readme",
"bugs": {
"url": "https://github.com/bancorprotocol/sdk/issues"
},
"directories": {
"test": "tests"
},
"files": [
"/dist/**/*.*"
],
"scripts": {
"build": "rimraf ./dist && tsc",
"test": "jest --coverage",
"snyk-protect": "snyk protect",
"prepare": "yarn build && yarn snyk-protect"
},
"keywords": [],
"author": "Yudi Levi",
"dependencies": {
"@types/text-encoding": "0.0.35",
"decimal.js": "^10.2.0",
"eosjs": "^20.0.3",
"node-fetch": "^2.6.0",
"web3": "1.2.1",
"web3-typescript-typings": "^0.10.2"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.12.37",
"bancor-contracts": "^0.5.19",
"jest": "^24.9.0",
"module-alias": "^2.2.2",
"rimraf": "^3.0.2",
"snyk": "^1.564.0",
"ts-jest": "^24.3.0",
"ts-node": "^8.9.1",
"typescript": "^3.8.3"
}
}