-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.14 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
{
"engines": {
"composer": "^0.20.0"
},
"name": "decentralized-energy-network",
"version": "0.1.15",
"description": "Decentralized Energy application with Hyperledger Composer",
"networkImage": "https://hyperledger.github.io/composer-sample-networks/packages/basic-sample-network/networkimage.svg",
"networkImageanimated": "https://hyperledger.github.io/composer-sample-networks/packages/basic-sample-network/networkimageanimated.svg",
"scripts": {
"prepublish": "composer archive create -t dir -n .",
"pretest": "npm run lint",
"lint": "eslint .",
"postlint": "npm run licchk",
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.conf",
"test-inner": "mocha --recursive && cucumber-js",
"test-cover": "nyc npm run test-inner",
"test": "mocha --recursive -t 4000"
},
"repository": {
"type": "git",
"url": "https://github.com/IBM/Decentralized-Energy-Composer"
},
"keywords": [
"composer",
"composer-network"
],
"author": "Raheel Zubairy",
"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-connector-embedded": "^0.20.6",
"composer-cucumber-steps": "^0.20.6",
"cucumber": "^2.2.0",
"eslint": "latest",
"istanbul": "latest",
"jsdoc": "latest",
"license-check": "latest",
"mkdirp": "latest",
"mocha": "latest",
"moment": "latest",
"nyc": "latest"
},
"license-check-config": {
"src": [
"**/*.js",
"!./coverage/**/*",
"!./node_modules/**/*",
"!./angular-app/**/*",
"!./out/**/*",
"!./scripts/**/*"
],
"path": "header.txt",
"blocking": true,
"logInfo": false,
"logError": true
},
"nyc": {
"exclude": [
"coverage/**",
"features/**",
"out/**",
"test/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}