-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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
{
"name": "@ostdotcom/ost-block-scanner",
"version": "1.0.2-beta.4",
"description": "OST Block Scanner parse ethereum based chains and store data in DynamoDB",
"main": "index.js",
"scripts": {
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/ostdotcom/ost-block-scanner.git"
},
"keywords": [
"OST",
"OpenST",
"Simple Token",
"Block Scanner",
"Ethereum",
"DynamoDB"
],
"author": "OST.com Inc.",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/ostdotcom/ost-block-scanner/issues"
},
"homepage": "https://github.com/ostdotcom/ost-block-scanner#readme",
"dependencies": {
"@ostdotcom/base": "^2.0.0",
"@ostdotcom/cache": "1.0.8-beta.6",
"@ostdotcom/storage": "1.0.4",
"@ostdotcom/xweb3": "1.0.0",
"abi-decoder": "1.0.9",
"bignumber.js": "4.1.0",
"chai": "4.2.0",
"commander": "2.19.0",
"mocha": "5.2.0",
"mustache": "3.0.1",
"sanitize-html": "1.19.3",
"uuid": "3.1.0"
},
"devDependencies": {
"lint-staged": "8.0.3",
"pre-commit": "1.2.2",
"prettier": "1.14.3"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
}
}