-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.8 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
{
"name": "benchcore-api",
"version": "0.1.3",
"description": "BenchCore API Wrapper Written In TypeScript For Interacting With BenchCore RootChains and SideChains.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build:docs": "typedoc --options typedoc.json src/index.ts",
"build:ts": "shx rm -r lib && tsc -p ./",
"build:prod": "npm run build:ts && npm run build:docs && npm run copypackage",
"copypackage": "shx cp package.json ./lib/package.json",
"test": "mocha --opts .mocharc",
"lint": "tslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benchcore/benchcore-api.git"
},
"bugs": {
"url": "https://github.com/benchcore/benchcore-api/issues"
},
"homepage": "https://github.com/benchcore/benchcore-api#readme",
"keywords": [
"benchcore-api",
"benchcore",
"bex",
"blockchain",
"cryptocurrency",
"typescript"
],
"author": "Bench Foundation, LLC <foundation@benchcore.io>",
"license": "MIT",
"dependencies": {
"@types/bigi": "^1.4.0",
"@types/node": "^8.0.12",
"@types/request": "^2.0.0",
"@types/rx": "^4.1.1",
"bigi": "^1.4.2",
"bs58check": "^2.0.2",
"bytebuffer": "^5.0.1",
"create-hash": "^1.1.3",
"create-hmac": "^1.1.6",
"ecurve": "^1.0.5",
"json-typescript-mapper": "^1.1.3",
"randombytes": "^2.0.5",
"request": "^2.81.0",
"rxjs": "^5.4.2",
"secp256k1": "^3.3.0",
"wif": "^2.0.6"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"chai": "^4.1.0",
"mocha": "^3.4.2",
"shx": "^0.2.2",
"source-map-support": "^0.4.15",
"ts-node": "^3.3.0",
"tslint": "^5.6.0",
"typedoc": "^0.8.0",
"typedoc-plugin-external-module-map": "^0.0.6",
"typescript": "^2.4.1"
}
}