-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
37 lines (37 loc) · 894 Bytes
/
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
{
"name": "coin-ts",
"version": "1.0.7",
"description": "A minimal cryptocurrency CLI implementation in TypeScript & Immutable.js",
"repository": {
"type": "git",
"url": "https://github.com/0xs34n/coin-cli"
},
"bin": {
"coin": "./cli.ts"
},
"main": "./cli.ts",
"scripts": {
"start": "npm run build:live",
"build:live": "ts-node ./cli.ts",
"test": "ts-node node_modules/tape/bin/tape test/**/*.test.{ts,js} | tap-spec"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"elliptic": "^6.4.0",
"immutable": "^4.0.0-rc.9",
"peer-exchange": "^2.2.0",
"vorpal": "^1.12.0",
"ts-node": "^4.0.2",
"wrtc": "0.0.63"
},
"devDependencies": {
"@types/node": "^8.0.58",
"@types/tape": "^4.2.31",
"nodemon": "^1.13.2",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"typescript": "^2.6.2"
}
}