-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "@eximchain/dappbot-types",
"version": "1.7.13",
"description": "Typescript bindings to interact with the DappBot API",
"main": "build/index.js",
"types": "spec/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && typedoc && touch docs/build/.nojekyll && echo \"include:\n - \"_*_.html\"\n - \"_*_.*.html\"\" >> docs/build/config.yml",
"prepare": "npm run build",
"prepublishOnly": "npm run deploy",
"deploy": "npm run build; npx gh-pages -d docs/build -t"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eximchain/dappbot-types.git"
},
"keywords": [
"typescript",
"dappbot",
"types",
"api"
],
"author": "John O'Sullivan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eximchain/dappbot-types/issues"
},
"homepage": "https://eximchain.github.io/dappbot-types",
"dependencies": {
"@types/stripe": "^6.32.13",
"ts-xor": "^1.0.8",
"@eximchain/api-types": "^1.0.1"
},
"peerDependencies": {
"@types/stripe": "6.31.25"
},
"devDependencies": {
"typedoc": "^0.15.0",
"typescript": "^3.7.2"
}
}