-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (53 loc) · 1.55 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
{
"name": "hlf-node-utils",
"version": "1.0.0",
"description": "common services and utils",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json './src/**/*.ts'",
"test": "npm run lint && npm run build && mocha --reporter spec",
"clean": "rm -rf node_modules && rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wearetheledger/hlf-node-utils.git"
},
"author": "theledger",
"license": "MIT",
"bugs": {
"url": "https://github.com/wearetheledger/hlf-node-utils/issues"
},
"homepage": "https://github.com/wearetheledger/hlf-node-utils#readme",
"dependencies": {
"@types/body-parser": "^1.16.8",
"@types/dotenv": "^4.0.2",
"@types/node": "^8.5.8",
"@types/winston": "^2.3.7",
"dotenv": "^4.0.0",
"fabric-client": "^1.0.2",
"fabric-ca-client": "^1.0.2",
"rxjs": "^5.4.0",
"path": "^0.12.7",
"type-util": "^0.1.5",
"typescript": "^2.6.2",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2",
"yup": "^0.23.0",
"pusher": "^1.5.1"
},
"devDependencies": {
"@types/express-serve-static-core": "4.0.49",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"nodemon": "^1.12.1",
"ts-node": "^3.3.0",
"typescript": "^2.6.2",
"tslint": "4.5.1"
},
"engines": {
"node": "^8",
"npm": "^5.6"
}
}