-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.34 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.34 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
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
{
"name": "@vigcoin/webapi",
"version": "0.1.1",
"description": "webapi",
"license": "GPLv3",
"repository": "",
"author": {
"name": "calidion",
"email": "calidion@gmail.com",
"url": "https://t1bao.com"
},
"keywords": [
"cryptonote",
"bitcoin",
"cryptocurrency",
"blockchain"
],
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"scripts": {
"pretest": "npm run lint && npm run build",
"serve": "ts-node src/main.ts",
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --fix --force --format verbose \"{src,__tests__}/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest --coverage --detectOpenHandles | pino-pretty -c -t",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch",
"p2p": "ts-node src/cli/p2p.ts | pino-pretty -c -t"
},
"dependencies": {
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.138",
"@types/uuid": "^3.4.4",
"@vigcoin/block": "0.1.3",
"@vigcoin/crypto": "^0.6.5",
"@vigcoin/p2p": "^0.1.0",
"@vigcoin/serializer": "^0.1.1",
"@vigcoin/transaction": "0.1.1",
"@vigcoin/types": "^0.1.1",
"@vigcoin/util": "^0.2.1",
"braces": "^3.0.2",
"collections": "^5.1.9",
"commander": "^2.20.0",
"debug": "^4.1.1",
"express": "^4.16.4",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"pino": "^5.12.6",
"typescript": "^3.4.5",
"vig": "^1.0.0-rc-2"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/jest": "^23.3.3",
"@types/node": "^10.11.4",
"@vigcoin/neon": "^0.2.12",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"mem": "^5.1.1",
"pino-pretty": "^3.2.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.3",
"supertest": "^4.0.2",
"ts-jest": "^23.10.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"preset": "ts-jest",
"modulePathIgnorePatterns": [
"<rootDir>/__tests__/data",
"<rootDir>/__tests__/config"
]
}
}