forked from hyperledger-iroha/iroha-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.89 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
{
"name": "iroha-helpers",
"version": "0.9.1",
"description": "Some helpers function for transaction/query generation for Hyperledger Iroha",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:hyperledger/iroha-javascript.git"
},
"keywords": [
"iroha",
"hyperledger"
],
"contributors": [
"Vyacheslav Bikbaev <[email protected]> (https://github.com/lasintez/)",
"Robert Sayakhov <[email protected]> (https://github.com/pobepto/)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hyperledger/iroha-javascript/issues"
},
"homepage": "https://github.com/hyperledger/iroha-javascript#readme",
"scripts": {
"build": "npm run clean && tsc && npm run copyProto",
"clean": "npx shx rm -rf lib",
"copyProto": "npx shx cp -r src/proto lib",
"lint": "npx eslint . --ext .ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"dependencies": {
"@improbable-eng/grpc-web": "^0.12.0",
"babel-preset-minify": "^0.5.1",
"buffer": "^5.4.0",
"ed25519.js": "^1.3.0",
"google-protobuf": "^3.9.1",
"js-sha3": "^0.8.0",
"lodash.clonedeep": "^4.5.0",
"lodash.flow": "^3.5.0",
"lodash.isequal": "^4.5.0",
"lodash.isplainobject": "^4.0.6",
"ts-protoc-gen": "^0.12.0",
"tslib": "^1.10.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"grpc": "^1.22.2",
"husky": "^3.0.3",
"shx": "^0.3.2",
"ts-proto": "^1.41.1",
"typescript": "^3.5.3"
}
}