This repository has been archived by the owner on Dec 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.41 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@strong-roots-capital/bitmex-list-active-instruments",
"version": "1.0.1",
"description": "List active instruments trading on BitMEX",
"main": "dist/bitmex-list-active-instruments.js",
"types": "dist/bitmex-list-active-instruments.d.ts",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc",
"clean": "rm -rf dist",
"ava": "ava -s -v",
"ava:fail-fast": "ava -s -v --fail-fast",
"watch:ava": "nodemon -e 'ts json' -x 'npm run ava || true'",
"watch:ava:fail-fast": "nodemon -e 'ts json' -x 'npm run ava:fail-fast || true'",
"test": "nyc ava",
"test:tap": "nyc ava --tap | tap-nyc",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"watch:test": "nodemon -e 'ts json' -x 'npm test || true'",
"typedoc": "typedoc",
"push-with-tags": "git push origin master && git push origin --tags",
"push-and-publish": "npm run push-with-tags && npm publish"
},
"files": [
"dist/"
],
"husky": {
"hooks": {
"pre-push": "npm run typedoc && git add doc && (git commit -m 'Update documentation' || true)"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/strong-roots-capital/bitmex-list-active-instruments.git"
},
"keywords": [
"bitmex",
"active",
"trading",
"instruments"
],
"author": "Eric Crosson <eric.s.crosson@utexas.edu> (https://github.com/strong-roots-capital)",
"license": "ISC",
"bugs": {
"url": "https://github.com/strong-roots-capital/bitmex-list-active-instruments/issues"
},
"homepage": "https://github.com/strong-roots-capital/bitmex-list-active-instruments",
"dependencies": {
"bitmex-node": "^1.7.0"
},
"devDependencies": {
"@types/node": "^10.12.18",
"ava": "^1.0.0",
"codecov": "^3.1.0",
"husky": "^1.3.1",
"nyc": "^13.1.0",
"tap-nyc": "^1.0.3",
"ts-node": "^7.0.1",
"typedoc": "^0.13.0",
"typedoc-plugin-markdown": "^1.1.20",
"typescript": "^3.2.2"
},
"ava": {
"compileEnhancements": false,
"files": [
"!dist/**/*.d.ts",
"test/**/*.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"typings"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
]
},
"publishConfig": {
"access": "public"
}
}