forked from hyperledger-archives/composer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.1 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
{
"name": "composer-runtime",
"version": "0.11.3",
"description": "The runtime execution environment for Hyperledger Composer",
"engines": {
"node": ">=6",
"npm": ">=3"
},
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"prepublish": "node ./scripts/tsgen.js",
"pretest": "npm run licchk",
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.json",
"postdoc": "npm run lint",
"lint": "eslint .",
"postlint": "npm run browserify",
"browserify": "browserify ./index.js -t [ babelify --presets [ latest ] ] > ./out/composer-runtime.js",
"test": "nyc mocha --recursive -t 10000"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/composer.git"
},
"keywords": [
"blockchain",
"hyperledger",
"solutions"
],
"author": "Hyperledger Composer",
"license": "Apache-2.0",
"devDependencies": {
"babel-preset-latest": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-subset": "^1.3.0",
"chai-things": "^0.2.0",
"eslint": "^3.17.1",
"fs-extra": "^1.0.0",
"jsdoc": "^3.4.3",
"license-check": "^1.1.5",
"mocha": "^3.4.2",
"nyc": "^11.1.0",
"sinon": "^2.3.8",
"uglifyify": "^3.0.4"
},
"license-check-config": {
"src": [
"**/*.js",
"!./coverage/**/*",
"!./node_modules/**/*",
"!./out/**/*"
],
"path": "header.txt",
"blocking": true,
"logInfo": false,
"logError": true
},
"dependencies": {
"composer-common": "0.11.3",
"debug": "^2.6.2",
"fast-json-patch": "^1.1.8",
"jsonata": "^1.2.2",
"lru-cache": "^4.0.2",
"sha.js": "^2.4.8",
"source-map": "^0.5.6"
},
"nyc": {
"exclude": [
"coverage/**",
"out/**",
"scripts/**",
"systest/**",
"test/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}