-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
89 lines (89 loc) · 2.17 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
{
"name": "chainpoint-gateway",
"description": "A Chainpoint Network Gateway is a key part of a scalable solution for anchoring data to public blockchains.",
"version": "1.2.0",
"main": "server.js",
"scripts": {
"start": "node server.js",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"test": "mocha tests/*.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
}
},
"keywords": [
"Chainpoint",
"bitcoin",
"lightning",
"Tierion",
"node",
"hash",
"blockchain",
"crypto",
"cryptography",
"sha256"
],
"author": "Jason Bukowski <jason@tierion.com> (https://tierion.com)",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.3",
"supertest": "^3.4.2"
},
"dependencies": {
"async-await-parallel": "^1.0.0",
"async-retry": "^1.2.3",
"blake2s-js": "^1.3.0",
"bluebird": "^3.5.5",
"chainpoint-binary": "^5.1.1",
"chainpoint-parse": "^5.0.1",
"chalk": "^2.4.2",
"dotenv": "^8.2.0",
"envalid": "^4.2.0",
"executive": "^1.6.3",
"generate-password": "^1.4.2",
"id128": "^1.6.6",
"ip": "^1.1.5",
"jmespath": "^0.15.0",
"js-binary": "^1.2.0",
"level-rocksdb": "^4.0.0",
"lnrpc-node-client": "^1.1.2",
"lodash": "^4.17.11",
"lsat-js": "^2.0.0",
"merkle-tools": "^1.4.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"restify": "^8.3.3",
"restify-cors-middleware": "^1.1.1",
"restify-errors": "^6.1.1",
"universal-analytics": "^0.4.23",
"uuid": "^3.3.2",
"uuid-time": "^1.0.0",
"uuid-validate": "^0.0.3",
"validator": "^10.11.0",
"winston": "^3.2.1",
"winston-papertrail": "^1.0.5"
}
}