-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
26 lines (26 loc) · 921 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
{
"private": true,
"main": ".eslintrc.js",
"workspaces": [
"@stellar/typescript-wallet-sdk",
"@stellar/typescript-wallet-sdk-km",
"@stellar/typescript-wallet-sdk-soroban"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext .ts",
"test": "jest --watchAll",
"test:ci": "jest --ci",
"test:e2e:ci": "yarn workspace @stellar/typescript-wallet-sdk test:e2e:ci",
"test:recovery:ci": "yarn workspace @stellar/typescript-wallet-sdk test:recovery:ci",
"test:anchorplatform:ci": "yarn workspace @stellar/typescript-wallet-sdk test:anchorplatform:ci",
"build": "yarn workspace @stellar/typescript-wallet-sdk build && yarn workspace @stellar/typescript-wallet-sdk-km build && yarn workspace @stellar/typescript-wallet-sdk-soroban build"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix --max-warnings 0"
]
},
"author": "",
"license": "ISC"
}