This repository has been archived by the owner on Mar 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 1.85 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
{
"name": "@openstfoundation/mosaic-tbd",
"version": "0.1.0",
"description": "NPM package that provides mosaic contract abis and bins. This package also helps in mosaic chain setup.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenSTFoundation/mosaic-tbd.git"
},
"keywords": [
"OpenST",
"OST",
"Mosaic",
"Simple Token",
"Token Economy",
"web3",
"Ethereum",
"EIP20"
],
"homepage": "https://openst.org",
"author": "OpenST Ltd.",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/OpenSTFoundation/mosaic-tbd/issues"
},
"scripts": {
"pre-commit": "lint-staged",
"webpack-build": "webpack --mode=production",
"web-pre-build": "node webPreBuild.js",
"web-build": "npm-run-all web-pre-build webpack-build",
"web-post-build": "git add dist/."
},
"dependencies": {
"bignumber.js": "4.1.0",
"node-cmd": "3.0.0",
"path": "0.12.7",
"shelljs": "0.8.1",
"web3": "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",
"commander": "2.8.1",
"edit-json-file": "1.0.8",
"expose-loader": "0.7.5",
"lint-staged": "8.0.3",
"mocha": "5.2.0",
"npm-run-all": "4.1.3",
"os": "0.1.1",
"pre-commit": "1.2.2",
"prettier": "1.15.3",
"string-replace-loader": "2.1.1",
"webpack": "4.19.1",
"webpack-cli": "3.1.0",
"webpack-uglify-js-plugin": "1.1.9",
"package-json-cleanup-loader": "1.0.3"
},
"pre-commit": {
"run": [
"pre-commit"
]
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
},
"ignore": [
"**/dist/*.js"
]
}
}