-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "@ostdotcom/storage",
"version": "1.0.4",
"description": "OST storage provides data storage and sharding services.",
"main": "index.js",
"scripts": {
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/ostdotcom/storage.git"
},
"keywords": [
"OpenST",
"OST",
"Simple Token",
"OST Storage",
"DynamoDB"
],
"author": "OST.com Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ostdotcom/storage/issues"
},
"homepage": "https://github.com/ostdotcom/storage#readme",
"dependencies": {
"@ostdotcom/base": "^2.0.0",
"aws-sdk": "2.263.1",
"amazon-dax-client": "1.1.3",
"bignumber.js": "4.1.0"
},
"devDependencies": {
"chai": "4.2.0",
"ink-docstrap": "1.3.2",
"lint-staged": "8.0.3",
"mocha": "5.2.0",
"pre-commit": "1.2.2",
"prettier": "1.14.3"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
}
}