-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.84 KB
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
{
"engines": {
"composer": "^0.20.6"
},
"name": "simple-blind-car-auction",
"version": "0.0.1",
"description": "Implementation of a simple blind car auction. The purpose of this repo is to introduce you to the concepts of a blockchain by showing you how a blockchain transfers assets between participants in a business network. ",
"networkImage": "https://hyperledger.github.io/composer-sample-networks/packages/carauction-network/networkimage.svg",
"networkImageanimated": "https://hyperledger.github.io/composer-sample-networks/packages/carauction-network/networkimageanimated.svg",
"scripts": {
"prepublish": "mkdirp ./dist && composer archive create --sourceType dir --sourceName . -a ./dist/simple-blind-car-auction.bna",
"pretest": "npm run lint",
"lint": "eslint .",
"postlint": "npm run licchk",
"licchk": "license-check-and-add",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.json",
"test": "mocha -t 0 --recursive",
"deploy": "./scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/nmpegetis/SimpleBlindCarAuction.git"
},
"keywords": [
"car",
"auction",
"composer",
"composer-network",
"blockchain",
"composer",
"composer-network"
],
"author": "Hyperledger Composer, nmpegetis",
"license": "Apache-2.0",
"devDependencies": {
"chai": "latest",
"chai-as-promised": "latest",
"composer-admin": "^0.20.6",
"composer-cli": "^0.20.6",
"composer-client": "^0.20.6",
"composer-common": "^0.20.6",
"composer-connector-embedded": "^0.20.6",
"composer-cucumber-steps": "^0.20.6",
"cucumber": "^2.2.0",
"eslint": "latest",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"license-check-and-add": "~2.3.0",
"mkdirp": "latest",
"mocha": "latest",
"moment": "^2.17.1",
"nyc": "latest"
},
"license-check-and-add-config": {
"folder": ".",
"license": "LICENSE.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
"composer-logs",
"dist",
"node_modules",
"out",
".git"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml"
],
"insert_license": false,
"license_formats": {
"js|cto|acl": {
"prepend": "/*",
"append": " */",
"eachLine": {
"prepend": " * "
}
},
"md": {
"file": "../../markdown-license.txt"
}
}
},
"dependencies": {
"generator-hyperledger-composer": "^0.20.6"
}
}