-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.56 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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "blockchain-node-generator",
"version": "0.0.1-beta",
"description": "CLI tool that generates node files from a local network for IBM Blockchain Platform",
"main": "dist/index.js",
"bin": {
"blockchain-node-generator": "dist/index.js"
},
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "nyc mocha -r ts-node/register 'src/**/*.spec.ts'",
"lint": "npm run licensecheck && tslint -c tslint.json 'src/**/*.ts'",
"build": "tsc",
"build:watch": "tsc -w",
"prepare": "npm run build",
"licensecheck": "license-check-and-add check",
"licenseadd": "license-check-and-add add",
"start": "ts-node src/index.ts",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liam-grace/blockchain-node-generator.git"
},
"keywords": [
"ibm",
"blockchain",
"platform",
"hyperledger",
"fabric",
"vscode",
"extension"
],
"author": "liam-grace",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/liam-grace/blockchain-node-generator/issues"
},
"homepage": "https://github.com/liam-grace/blockchain-node-generator#readme",
"devDependencies": {
"@semantic-release/github": "^5.6.0-beta.2",
"@semantic-release/npm": "^6.0.0-beta.1",
"@types/chai-as-promised": "^7.1.2",
"@types/dockerode": "^2.5.20",
"@types/inquirer": "^6.5.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.9",
"@types/sinon": "^7.5.0",
"@types/sinon-as-promised": "^4.0.12",
"@types/sinon-chai": "^3.2.3",
"@types/yargs": "^13.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"istanbul": "^0.4.5",
"license-check-and-add": "^3.0.3",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"semantic-release": "^16.0.0-beta.25",
"sinon": "^7.5.0",
"sinon-as-promised": "^4.0.3",
"sinon-chai": "^3.3.0",
"standard-version": "^7.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@types/source-map-support": "^0.5.3",
"dockerode": "^3.0.2",
"inquirer": "^7.0.0",
"source-map-support": "^0.5.13",
"yargs": "^14.2.0"
},
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts"
],
"exclude": [
"coverage/**",
"dist/**",
"**/*.spec.ts",
"test/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": true,
"statements": 26.44,
"branches": 32.81,
"functions": 29.51,
"lines": 28.05
}
}