-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 971 Bytes
/
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
{
"name": "@defich/oracle-adapters",
"private": true,
"license": "MIT",
"workspaces": [
"./adapters",
"./packages/*"
],
"scripts": {
"prepare": "husky install",
"build": "lerna run build",
"version:set": "lerna version $1 --yes --no-push --no-git-tag-version --exact",
"publish:latest": "lerna exec -- npm publish --tag latest --access public",
"lint": "eslint . --fix",
"test": "jest --maxWorkers=100%",
"test:ci": "jest --ci --coverage --forceExit --maxWorkers=4"
},
"devDependencies": {
"@types/jest": "27.5.2",
"eslint": "8.35.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-config-standard-with-typescript": "23.0.0",
"husky": "8.0.3",
"jest": "27.5.1",
"lerna": "5.1.8",
"lint-staged": "13.1.2",
"nock": "13.3.0",
"ts-jest": "27.1.5",
"typescript": "4.2.4",
"wait-for-expect": "3.0.2"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
}
}