-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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": "@vigcoin/block",
"version": "0.1.5",
"description": "block",
"license": "MIT",
"repository": "",
"author": {
"name": "",
"email": "",
"url": ""
},
"keywords": [
""
],
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"bin": {
"bi": "lib/block-index-cli.js",
"block": "lib/block-cli.js"
},
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --fix --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "npm run build && jest --coverage",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"@vigcoin/crypto": "^0.6.5",
"@vigcoin/serializer": "^0.1.1",
"@vigcoin/transaction": "^0.1.1",
"@vigcoin/types": "^0.1.2",
"moment": "^2.29.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"coveralls": "^3.1.0",
"handlebars": "^4.7.7",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=12.0.0"
},
"jest": {
"preset": "ts-jest"
}
}