forked from OpenSTFoundation/openst-am1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.73 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
{
"name": "@openstfoundation/openst-platform",
"version": "0.9.4-beta.30",
"description": "OpenST Platform provides a web3 interface to tokenise mainstream consumer applications with crypto-assets on Ethereum",
"keywords": [
"web3",
"openST",
"OST",
"simpletoken",
"utility-token",
"ethereum",
"erc20"
],
"homepage": "https://openst.org",
"author": "OpenST Ltd.",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/OpenSTFoundation/openst-platform.git"
},
"bugs": {
"url": "https://github.com/OpenSTFoundation/openst-platform/issues"
},
"scripts": {
"start": "index.js",
"setup": "node tools/setup/index.js",
"make-docs": "node_modules/.bin/jsdoc -c .jsdoc.json",
"pre-commit": "lint-staged"
},
"dependencies": {
"@openstfoundation/openst-base": "0.9.3-beta.6",
"@openstfoundation/openst-notification": "1.0.5",
"@openstfoundation/openst-storage": "1.0.2-beta.14",
"abi-decoder": "1.0.9",
"bignumber.js": "4.1.0",
"child_process": "1.0.2",
"cli-spinner": "0.2.7",
"commander": "2.16.0",
"continuation-local-storage": "3.2.1",
"debug": "2.2.0",
"edit-json-file": "1.0.8",
"node-cmd": "3.0.0",
"readline": "1.3.0",
"shell-source": "1.1.0",
"shelljs": "0.8.1",
"shortid": "2.2.8",
"uuid": "3.1.0",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"chai": "4.1.2",
"ink-docstrap": "1.3.2",
"jsdoc": "3.5.5",
"lint-staged": "7.2.0",
"mocha": "5.0.0",
"pre-commit": "1.2.2",
"prettier": "^1.13.7"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
}
}