-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
72 lines (72 loc) · 1.67 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
{
"name": "@openst/brandedtoken.js",
"version": "0.10.0",
"description": "JS interaction layer to interact with branded tokens and gateway composer contracts.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenST/brandedtoken.js.git"
},
"keywords": [
"OpenST",
"OST",
"BrandedToken",
"Simple Token",
"Token Economy",
"web3",
"Ethereum",
"EIP20"
],
"homepage": "https://openst.org",
"author": "OpenST Limited",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/OpenST/brandedtoken.js/issues"
},
"scripts": {
"test": "mocha --recursive --timeout 120000 test/unit --exit",
"test:integration": "node test/integration/integration_tests.js",
"pre-commit": "lint-staged"
},
"dependencies": {
"@openst/brandedtoken-contracts": ">=0.10.0 <0.11.0",
"@openst/mosaic.js": ">=0.10.0 <0.11.0",
"winston": "3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"lint-staged": "8.1.7",
"os": "0.1.1",
"pre-commit": "1.2.2",
"shelljs": "0.8.1",
"solc": "0.4.23",
"node-cmd": "3.0.0",
"edit-json-file": "1.0.8",
"chai": "4.1.2",
"mocha": "5.0.0",
"sinon": "7.2.3",
"commander": "2.8.1",
"abi-decoder": "1.2.0",
"wait-port": "0.2.2",
"web3": "1.0.0-beta.37",
"web3-eth-accounts": "1.0.0-beta.37"
},
"pre-commit": {
"run": [
"pre-commit"
]
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --config .eslintrc .",
"git add"
]
},
"ignore": [
"**/dist/*.js"
]
}
}