-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.97 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
{
"name": "@polymarket/order-utils",
"version": "2.1.0",
"description": "Typescript utility for creating orders for Polymarket's CLOB",
"author": "Liam Kovatch <[email protected]>",
"homepage": "https://github.com/Polymarket/clob-order-utils",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Polymarket/clob-order-utils.git"
},
"contributors": [
{
"name": "Liam Kovatch",
"url": "https://github.com/L-Kov"
},
{
"name": "Jonathan Amenechi",
"url": "https://github.com/JonathanAmenechi"
},
{
"name": "Rodrigo Calvo",
"url": "https://github.com/poly-rodr"
},
{
"name": "Mike Shrieve",
"url": "https://github.com/mshrieve"
}
],
"scripts": {
"build": "make build",
"test": "make test",
"lint": "make lint",
"postbuild": "cp package.json dist && cp README.md dist"
},
"dependencies": {
"@metamask/eth-sig-util": "^5.0.0",
"ethers": "^5.7.1"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.6",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-unused-imports": "^2.0.0",
"esm": "^3.2.25",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"bugs": {
"url": "https://github.com/Polymarket/clob-order-utils/issues"
}
}