This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.5 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
{
"name": "@defichain/salmon",
"version": "0.0.0",
"private": true,
"workspaces": [
"./packages/*"
],
"engines": {
"node": ">=14.x"
},
"scripts": {
"prepare": "husky install",
"clean": "rimraf ./packages/**/dist && rimraf ./packages/**/tsconfig.build.tsbuildinfo",
"build": "tsc -b -v ./tsconfig.build.json",
"version": "lerna version $1 --yes --no-push --no-git-tag-version",
"publish:next": "lerna exec -- npm publish --tag next --access public",
"publish:latest": "lerna exec -- npm publish --tag latest --access public",
"standard": "ts-standard --fix",
"test": "jest",
"test:ci": "jest --ci --coverage --forceExit --maxWorkers=4",
"test:e2e": "jest --runInBand --config ./jest.config.e2e.js ./e2e/single.*.test.ts",
"test:e2e:weighted": "jest --config ./jest.config.e2e.js ./e2e/weighted.test.ts",
"test:e2e:protection": "jest --config ./jest.config.e2e.js ./e2e/single.price.protection.test.ts",
"all": "npm run build && npm run standard && npm run test",
"package": "npm run pack -w ./packages/salmon-lambda-functions"
},
"devDependencies": {
"@defichain/playground-api-client": "0.9.0",
"@types/jest": "^26.0.22",
"husky": "^7.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^11.0.1",
"rimraf": "^3.0.2",
"ts-jest": "26.5.6",
"ts-standard": "^10.0.0",
"typescript": "4.2.3",
"wait-for-expect": "^3.0.2"
},
"lint-staged": {
"*.{ts,js}": [
"npm run standard"
]
}
}