-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.42 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
{
"name": "chainbet",
"version": "0.0.16",
"description": "Methods for the ChainBet protocol",
"main": "./lib/chainbet.js",
"types": "./lib/chainbet.d.ts",
"scripts": {
"build": "tsc",
"test": "nyc mocha --require babel-core/register",
"test-ts": "nyc mocha --require ts-node/register --require source-map-support/register --full-trace --bail src/**/*.spec.ts"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"author": "James Cramer <jscramer@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/jcramer/chainbet.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"bip68": "^1.0.4",
"bitbox-cli": "^1.4.4",
"bs58": "^4.0.1",
"eventsource": "^1.0.5",
"inquirer": "^6.0.0",
"underscore": "^1.9.0"
},
"devDependencies": {
"@types/node": "^10.5.2",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.4",
"@types/assert": "^0.0.31",
"assert": "^1.4.1",
"babel-core": "^6.26.3",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nconf": "^0.10.0",
"nyc": "^11.6.0",
"sinon": "^4.5.0",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
}
}