This repository has been archived by the owner on Jan 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
101 lines (101 loc) · 3.06 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@melonproject/melonjs",
"version": "1.0.5",
"description": "A convenient JavaScript interface to the Melon protocol Ethereum smart contracts.",
"main": "index.js",
"module": "bundle.esm.js",
"typings": "index.d.ts",
"license": "MIT",
"author": "Avantgarde Finance <team@avantgarde.finance>",
"homepage": "https://melonjs.melonprotocol.com",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melonproject/melonjs.git"
},
"bugs": {
"url": "https://github.com/melonproject/melonjs/issues"
},
"contributors": [
"Erin Koen <erin.koen@gmail.com>",
"Ivan Herger <ivan@herger.org>",
"Luong Nguyen <luongnt.58@gmail.com>",
"Sebastian Siemssen <fubhy@fubhy.com>"
],
"scripts": {
"clean": "rimraf dist typedocs coverage",
"prebuild": "rimraf dist",
"build": "tsc && rollup --config",
"postbuild": "cp package.json LICENSE README.md dist",
"dev": "jest --watch",
"prewatch": "cp package.json dist",
"watch": "tsc --watch",
"precodegen": "rimraf src/abis",
"codegen": "node scripts/codegen",
"pretypedocs": "rimraf typedocs",
"typedocs": "typedoc",
"posttypedocs": "cp jekyll.config.yml typedocs/_config.yml",
"pretest": "rimraf coverage",
"test": "jest --verbose --config tests/jest.config.js",
"coverage": "yarn test --coverage",
"format": "prettier --write src/{*,**/*}.ts",
"lint": "yarn prettier --list-different src/{*,**/*}.ts",
"typecheck": "tsc --noEmit",
"preversion": "yarn codegen && yarn typecheck && yarn test && yarn lint && yarn typedocs && yarn build",
"postversion": "cp package.json dist",
"prerelease": "yarn version",
"release": "git push --tags && yarn publish dist --new-version $npm_package_version",
"postrelease": "git push && gh-pages -d typedocs"
},
"dependencies": {
"@0x/order-utils": "^8.5.0-beta.4",
"@0x/order-utils-v2": "npm:@0x/order-utils@8.4.0",
"@0x/subproviders": "^6.0.3",
"bignumber.js": "^9.0.0",
"web3": "^2.0.0-alpha.1",
"web3-core": "^2.0.0-alpha.1",
"web3-eth": "^2.0.0-alpha.1",
"web3-eth-abi": "^2.0.0-alpha.1",
"web3-eth-contract": "^2.0.0-alpha.1",
"web3-providers": "^2.0.0-alpha.1",
"web3-utils": "^2.0.0-alpha.1"
},
"devDependencies": {
"@0x/types": "^2.5.0-beta.3",
"@types/jest": "^25.2.1",
"@types/lru-cache": "^5.1.0",
"cp": "^0.2.0",
"ganache-core": "^2.8.0",
"gh-pages": "^2.1.1",
"glob": "^7.1.5",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.1.7",
"lru-cache": "^5.1.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.7.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"tar": "^6.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.4.1",
"typedoc": "^0.17.6",
"typescript": "^3.7.4"
},
"resolutions": {
"bignumber.js": "^9.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn format"
]
}
}