-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 1.95 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
{
"name": "nodecore-js",
"private": false,
"description": "Monorepo for nodecore related projects",
"scripts": {
"publish:all": "lerna publish from-package",
"convert": "lerna link convert",
"bootstrap": "npx lerna bootstrap",
"build": "lerna run build",
"build:browser": "lerna run build:browser",
"check": "lerna run check",
"link:all": "lerna link && lerna run build",
"clean": "lerna run clean",
"compile": "lerna run compile",
"test:all": "lerna run test:all",
"fix": "lerna run fix",
"test": "lerna run test",
"test:cov": "lerna run test:cov",
"publish": "npx lerna publish"
},
"browserslist": [
"defaults"
],
"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": {
"@veriblock/nodecore-js": "file:packages/core",
"@veriblock/nodecore-parser": "file:packages/parser",
"ncjs-cli": "file:packages/ncjs-cli"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/jest": "^24.9.0",
"@types/node": "^13.1.8",
"@types/secp256k1": "^3.5.0",
"@types/stream-buffers": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8",
"eslint-config-oclif": "^3.1",
"eslint-plugin-compat": "^3.3.0",
"globby": "^11",
"gts": "^1.1.2",
"jest": "^24.9.0",
"lerna": "^3.20.2",
"prettier": "1.19.1",
"prettify": "^0.1.7",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"typescript": "^3.7.4",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"version": "2.0.0"
}