-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
87 lines (87 loc) · 2.28 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
{
"name": "@worldsibu/hurley",
"version": "1.4.3",
"description": "The development environment toolset for enterprise blockchain projects",
"main": "index.js",
"files": [
"bin/*",
"dist/*",
"templates/*",
"network-objects/*",
"tools/*",
"docker-compose.yml",
"package.json"
],
"bin": {
"hurl": "./dist/command.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"lint": "tslint --fix -c './tslint.json' -p -p './tsconfig.json'",
"test": "mocha -r ts-node/register tests/**/*.spec.ts --reporter spec",
"prepublish:ci": "npm version --git-tag-version=false $(npm view @worldsibu/hurley version)-alpha.$(git rev-parse --short HEAD)",
"publish:ci": "npm publish --tag=canary",
"postpublish:ci": "git reset --hard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/worldsibu/hurley.git"
},
"keywords": [
"hurley",
"development",
"hyperledger",
"fabric",
"environment",
"blockchain",
"hyperledger fabric",
"solutions",
"smart contract",
"run",
"convector",
"composer"
],
"author": "WorldSibu",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/worldsibu/hurley/issues"
},
"homepage": "https://github.com/worldsibu/hurley#readme",
"dependencies": {
"@worldsibu/convector-common-fabric-helper": "~1.3.6",
"@worldsibu/convector-tool-chaincode-manager": "~1.3.6",
"@worldsibu/convector-tool-dev-env": "~1.3.6",
"async": "^2.1.4",
"chai": "^4.2.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"ejs": "^2.6.1",
"fabric-ca-client": "^1.4.0",
"fabric-client": "^1.4.0",
"fs-extra": "^7.0.1",
"inquirer": "^2.0.0",
"insight": "^0.10.1",
"js-yaml": "^3.14.0",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^5.1.0",
"mocha": "^5.2.0",
"path": "^0.12.7",
"shelljs": "^0.8.2",
"tslib": "^1.9.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.5",
"lerna": "^3.4.3",
"rimraf": "^2.6.2",
"ts-node": "^6.0.3",
"tsc": "^1.20150623.0",
"tslint": "^5.9.1",
"typescript": "^2.9.2"
}
}