This repository has been archived by the owner on Dec 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "ark-ts",
"version": "0.4.1",
"description": "An ARK API wrapper, written in TypeScript to interact with ARK blockchain.",
"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 ./ && touch lib/.gitkeep",
"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/arkecosystem/ark-ts.git"
},
"bugs": {
"url": "https://github.com/ArkEcosystem/ark-ts/issues"
},
"homepage": "https://github.com/ArkEcosystem/ark-ts#readme",
"keywords": [
"ark",
"api",
"blockchain",
"cryptocurrency",
"typescript"
],
"author": "Lúcio Rubens <lucio@ark.io>",
"license": "MIT",
"dependencies": {
"@types/bigi": "^1.4.0",
"@types/node": "^8.0.12",
"@types/request": "^2.0.0",
"@types/rx": "^4.1.1",
"axios": "^0.18.0",
"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",
"rxjs": "^5.5.12",
"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"
}
}