forked from leverj/leverj-mm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "@leverj/leverj-mm",
"description": "Leverj Market Maker",
"keywords": [
"market maker",
"leverj",
"trading",
"simulation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/leverj/leverj-mm.git"
},
"author": "leverj",
"license": "MIT",
"bugs": {
"url": "https://github.com/leverj/leverj-mm/issues"
},
"homepage": "https://github.com/leverj/leverj-mm#README.md",
"engines": {
"node": ">= 10.15.1",
"yarn": ">= 1.13.0"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "lerna run test",
"test:workspaces": "yarn all-workspaces run test",
"publish:patch": "up=patch yarn publish:up",
"publish:minor": "up=minor yarn publish:up",
"publish:major": "up=major yarn publish:up",
"publish:up": "lerna version $up --exact --git-tag-version --push --yes && lerna publish from-git --yes"
},
"devDependencies": {
"@leverj/test-utils": "1.5.14",
"del": "^6.0.0",
"expect.js": "^0.3.1",
"fixtures.js": "^2.1.0",
"lerna": "^3.18.1",
"mocha": "^8.2.1",
"mock-require": "^3.0.3",
"sinon": "^9.2.1",
"yarn-all-workspaces": "^1.0.0"
}
}