-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@veriblock/nodecore-js",
"version": "1.7.0",
"description": "JavaScript/TypeScript libraries for veriblock nodecore repo.",
"main": "./build/node/src/index.js",
"types": "./build/node/src/index.d.ts",
"files": [
"/build/node/src/**/*",
"/build/browser.veriblock.js"
],
"private": false,
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"build:browser": "webpack-cli",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"test:all": "yarn test && yarn lint && yarn lint:compat",
"lint": "eslint -c ../../eslintrc_ts.json src --ext .ts",
"lint:compat": "yarn build && eslint -c ../../eslintrc_compat.json build/node/src --ext .js",
"fix": "gts fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"pretest": "npm run compile",
"posttest": "npm run check",
"prepare": "npm run build && npm run build:browser"
},
"browserslist": [
"defaults"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/VeriBlock/nodecore-js.git"
},
"keywords": [
"js",
"nodecore",
"veriblock",
"wallet",
"browser",
"lib"
],
"author": "warchant",
"contributors": [
"j0k"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/VeriBlock/nodecore-js/issues"
},
"homepage": "https://github.com/VeriBlock/nodecore-js#readme",
"dependencies": {
"base-x": "^3.0.7",
"bignumber.js": "^9.0.0",
"fast-sha256": "^1.3.0",
"fp-ts": "^2.4.1",
"io-ts": "^2.0.5",
"secp256k1": "4.0.2",
"secure-random": "^1.1.2",
"stream-buffers": "^3.0.2"
},
"gitHead": "e9c6707c6f16dc136d63265626a11f7516b9276e",
"devDependencies": {
"tsc": "^1.20150623.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}