-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 900 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 900 Bytes
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
{
"name": "@eximchain/api-types",
"version": "1.1.0",
"description": "Shared types used across Eximchain APIs",
"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",
"dev": "tsc --watch",
"deployDocs": "npm run build; npx gh-pages -d docs/build -t",
"prepare": "npm run build",
"prepublishOnly": "npm run deployDocs"
},
"author": "John O'Sullivan <john@eximchain.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Eximchain/api-types.git"
},
"dependencies": {
"ts-xor": "^1.0.8"
},
"devDependencies": {
"@types/node": "^12.12.8",
"typedoc": "^0.15.0",
"typescript": "^3.7.2"
}
}