forked from OpenST/openst.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 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
{
"name": "@openstfoundation/openst.js",
"version": "0.10.0",
"description": "OpenST is a framework for building token economies.",
"keywords": [
"OpenST",
"OST",
"Simple Token",
"Token Economy",
"web3",
"Ethereum",
"EIP20"
],
"homepage": "https://openst.org",
"author": "OpenST Ltd.",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/OpenSTFoundation/openst.js.git"
},
"bugs": {
"url": "https://github.com/OpenSTFoundation/openst.js/issues"
},
"scripts": {
"test": "mocha --recursive --timeout 120000 test --exit",
"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": {
"@openstfoundation/mosaic-tbd": "https://github.com/OpenSTFoundation/mosaic-tbd.git"
},
"devDependencies": {
"chai": "4.1.2",
"mocha": "5.0.0",
"@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",
"commander": "2.8.1",
"edit-json-file": "1.0.8",
"expose-loader": "0.7.5",
"lint-staged": "7.2.0",
"npm-run-all": "4.1.3",
"os": "0.1.1",
"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",
"package-json-cleanup-loader": "1.0.3",
"abi-decoder": "1.2.0"
},
"pre-commit": {
"run": [
"web-build",
"web-post-build",
"pre-commit"
]
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
},
"ignore": [
"**/dist/*.js"
]
}
}