-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·71 lines (71 loc) · 2.34 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
{
"engines": {
"composer": "^0.16.0"
},
"name": "loyalty-points-network",
"version": "0.0.1",
"description": "This is a business network for loyalty points.",
"networkImage": "https://raw.githubusercontent.com/tyrell/loyalty-points-network/master/loyaltynetworkimage.svg",
"networkImageanimated": "https://raw.githubusercontent.com/tyrell/loyalty-points-network/master/loyaltynetworkimageanimated.svg",
"scripts": {
"prepublish": "mkdirp ./dist && composer archive create --sourceType dir --sourceName . -a ./dist/loyalty-points-network.bna",
"pretest": "npm run lint",
"lint": "eslint .",
"postlint": "npm run licchk",
"licchk": "license-check",
"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/tyrell/loyalty-points-network.git"
},
"keywords": [
"loyalty points",
"reference data",
"finance",
"composer",
"composer-network"
],
"author": "Tyrell Perera",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^3.5.0",
"composer-admin": "^0.16.0",
"composer-client": "^0.16.0",
"composer-common": "^0.16.0",
"composer-connector-embedded": "^0.16.0",
"eslint": ">=4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"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
},
"dependencies": {}
}