-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·70 lines (70 loc) · 1.84 KB
/
package.json
File metadata and controls
executable file
·70 lines (70 loc) · 1.84 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
{
"name": "@sideshift/toolkit",
"version": "0.10.1",
"description": "Functions for orders, deposits, rates, and webhooks",
"repository": {
"type": "git",
"url": "git://github.com/sideshift/toolkit.git"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"tsc": "tsc",
"build": "npm run tsc",
"clean": "rm -rf build && npm run postpublish",
"format": "prettier --write src",
"lint": "eslint src",
"prepublishOnly": "npm run format && npm run lint && npm run build && cp -R build/* .",
"postpublish": "rm -rf index.js *.d.ts hooks types *.map rest.js"
},
"author": "SideShift.ai <hello@sideshift.ai>",
"license": "MIT",
"files": [
"/*.{d.ts,js,js.map}",
"/hooks/**/*.{d.ts,js,js.map}",
"/types/**/*.{d.ts,js,js.map}"
],
"keywords": [
"sideshift",
"sideshift.ai",
"cryptocurrency",
"exchange",
"api",
"webhook",
"hook",
"bitcoin",
"swap",
"rest",
"typescript"
],
"homepage": "https://github.com/sideshift/toolkit",
"devDependencies": {
"@types/express": "~4.17.6",
"@types/body-parser": "1.19.0",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "3.0.1",
"eslint": "7.1.0",
"eslint-config-airbnb-typescript": "7.2.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-promise": "4.2.1",
"express": "~4.17.1",
"express-async-handler": "~1.1.4",
"prettier": "2.0.5",
"typescript": "^3.9.0"
},
"dependencies": {
"body-parser": "1.19.0",
"fp-ts": "2.6.1",
"io-ts": "2.2.2",
"ky": "0.20.0",
"ky-universal": "0.6.0"
},
"peerDependencies": {
"express": ">=4",
"express-async-handler": ">=1"
}
}