-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "@ibm/carauction-network",
"version": "0.0.1",
"description": "Car Auction Business Network",
"scripts": {
"prepublish": "mkdirp ./dist && concerto archive create -d . -a ./dist/carauction-network.zip",
"pretest": "npm run lint",
"lint": "eslint .",
"postlint": "npm run licchk",
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.conf -t ./node_modules/ink-docstrap/template .",
"test": "mocha --recursive",
"deploy": "./scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "https://github.ibm.com/Blockchain-WW-Labs/CarAuction-Network.git"
},
"keywords": [
"car",
"auction"
],
"author": "IBM",
"license": "ISC",
"publishConfig": {
"registry": "https://npm-registry.whitewater.ibm.com"
},
"devDependencies": {
"@ibm/concerto-admin": "~0.3.0-0",
"@ibm/concerto-cli": "^0.3.0-20170113154116",
"@ibm/concerto-client": "~0.3.0-0",
"@ibm/concerto-common": "~0.3.2-0",
"@ibm/concerto-connector-embedded": "~0.3.0-0",
"chai": "^3.5.0",
"eslint": "^3.6.1",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.1",
"license-check": "^1.1.5",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"moment": "^2.17.1"
},
"license-check-config": {
"src": [
"**/*.js",
"!./coverage/**/*",
"!./node_modules/**/*",
"!./out/**/*",
"!./scripts/**/*"
],
"path": "header.txt",
"blocking": true,
"logInfo": false,
"logError": true
}
}