-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
79 lines (79 loc) · 1.95 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
75
76
77
78
79
{
"name": "@openst/openst.js",
"version": "0.10.0",
"description": "OpenST is a framework for building token economies.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/openst/openst.js.git"
},
"keywords": [
"OpenST",
"OST",
"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/openst.js/issues"
},
"scripts": {
"test": "mocha --recursive --timeout 120000 test/unit --exit",
"test:integration": "mocha --recursive --timeout 120000 test/integration --exit",
"pre-commit": "lint-staged"
},
"dependencies": {
"@openst/openst-contracts": ">=0.10.0 <0.11.0",
"@openst/mosaic.js": ">=0.10.0 <0.11.0"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/runtime": "7.0.0",
"abi-decoder": "1.2.0",
"babel-loader": "8.0.2",
"chai": "4.1.2",
"commander": "2.8.1",
"edit-json-file": "1.0.8",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"expose-loader": "0.7.5",
"lint-staged": "7.2.0",
"mocha": "5.0.0",
"npm-run-all": "4.1.3",
"os": "0.1.1",
"package-json-cleanup-loader": "1.0.3",
"pre-commit": "1.2.2",
"prettier": "1.13.7",
"string-replace-loader": "2.1.1",
"webpack": "4.19.1",
"webpack-cli": "3.1.0",
"webpack-uglify-js-plugin": "1.1.9",
"wait-port": "0.2.2",
"assert": "^1.4.1",
"ethereumjs-util": "^6.1.0",
"sinon": "7.2.3",
"web3": "1.0.0-beta.37",
"web3-eth-accounts": "1.0.0-beta.37"
},
"pre-commit": {
"run": [
"pre-commit"
]
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
}
}
}