-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
69 lines (69 loc) · 1.79 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
{
"name": "@openst/mosaic.js",
"version": "0.10.0",
"description": "mosaic.js provides a JS abstraction layer to interact with contracts on mosaic chains.",
"main": "lib/mosaic.node.js",
"browser": "lib/mosaic.web.js",
"repository": {
"type": "git",
"url": "git+https://github.com/openst/mosaic.js.git"
},
"keywords": [
"OpenST",
"OST",
"Mosaic",
"Simple Token",
"Token Economy",
"web3",
"Ethereum",
"EIP20"
],
"homepage": "https://openst.org",
"author": "OpenST Ltd.",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/openst/mosaic.js/issues"
},
"scripts": {
"test": "MOSAIC_LOG_LEVEL=0 mocha --recursive --timeout 5000",
"test:integration": "node test_integration/integration_tests.js",
"build": "webpack --mode=production",
"prepack": "npm ci && npm run build"
},
"dependencies": {
"@openst/mosaic-contracts": ">=0.10.0 <0.11.0",
"bn.js": "4.11.8",
"js-scrypt": "^0.2.0"
},
"peerDependencies": {
"web3": "1.0.0-beta.37",
"web3-eth-accounts": "1.0.0-beta.37"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/runtime": "7.0.0",
"babel-loader": "8.0.2",
"chai": "4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"lint-staged": "8.1.7",
"mocha": "5.2.0",
"npm-run-all": "4.1.3",
"package-json-cleanup-loader": "1.0.3",
"rlp": "2.1.0",
"sinon": "7.2.3",
"wait-port": "^0.2.2",
"webpack": "4.19.1",
"webpack-cli": "3.1.0",
"webpack-uglify-js-plugin": "1.1.9",
"web3": "1.0.0-beta.37",
"web3-eth-accounts": "1.0.0-beta.37"
},
"files": [
"lib"
]
}