-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
74 lines (74 loc) · 1.79 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
{
"name": "quorum-js",
"version": "0.3.7",
"description": "Quorum.js is an extension to web3.js providing support for JP Morgan's Quorum API",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/jpmorganchase/quorum.js.git"
},
"main": "lib/index.js",
"directories": {
"lib": "./lib"
},
"author": "JPMorgan Chase",
"contributors": [
{
"name": "SebaRaba",
"email": "[email protected]",
"url": "https://github.com/sebaraba"
}
],
"bugs": {
"url": "https://github.com/jpmorganchase/quorum.js/issues"
},
"homepage": "https://github.com/jpmorganchase/quorum.js#readme",
"scripts": {
"test": "mocha -r dotenv/config test/**",
"lint": "eslint .",
"preversion": "npm run lint && npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postpublish": "git push origin master --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"web3",
"quorum",
"tessera",
"constellation"
],
"dependencies": {
"dotenv": "^6.2.0",
"ethereumjs-tx": "^2.1.1",
"request-promise-native": "^1.0.7",
"rlp": "^2.2.3",
"underscore": "^1.13.1",
"utf8": "^3.0.0",
"web3": "^1.3.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.1",
"expect.js": "^0.3.1",
"husky": "^1.1.2",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0",
"prettier": "^1.14.2"
}
}