forked from Polymarket/polymarket-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.01 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
63
64
65
66
67
68
69
70
71
72
{
"name": "@polymarket/sdk",
"version": "6.0.1",
"description": "SDK to simplify common interactions with the Polymarket proxy wallet",
"author": "Tom French <tom@tomfren.ch>",
"repository": "https://github.com/Polymarket/polymarket-sdk.git",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"contributors": [
{
"name": "Tom French",
"url": "https://github.com/tomafrench"
},
{
"name": "Mike Shrieve",
"url": "https://github.com/mshrieve"
},
{
"name": "Jonathan Amenechi",
"url": "https://github.com/JonathanAmenechi"
}
],
"peerDependencies": {
"@ethersproject/abi": "^5.4.1",
"@ethersproject/address": "^5.0.8",
"@ethersproject/bignumber": "^5.0.8",
"@ethersproject/constants": "^5.0.8",
"@ethersproject/contracts": "^5.0.9",
"@ethersproject/keccak256": "^5.0.6",
"@ethersproject/providers": "^5.0.14",
"@ethersproject/solidity": "^5.0.7"
},
"devDependencies": {
"@ethersproject/abi": "^5.0.7",
"@ethersproject/address": "^5.0.8",
"@ethersproject/bignumber": "^5.0.8",
"@ethersproject/constants": "^5.0.8",
"@ethersproject/contracts": "^5.0.9",
"@ethersproject/keccak256": "^5.0.6",
"@ethersproject/providers": "^5.0.14",
"@ethersproject/solidity": "^5.0.7",
"@types/jest": "^27.0.1",
"@types/mocha": "^9.0.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-typescript-prettier": "^4.1.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"keywords": [
"blockchain",
"ethereum",
"matic",
"typescript"
],
"license": "MIT",
"scripts": {
"prebuild": "yarn clean",
"build": "tsc --project tsconfig.production.json",
"clean": "shx rm -rf ./lib",
"lint": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore ./src/**/*",
"prepack": "yarn test && yarn build",
"test": "jest"
}
}