forked from BitGo/api-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "@api-ts/base",
"version": "0.1.0",
"description": "Tools for using io-ts to describe and consume APIs",
"license": "Apache-2.0",
"private": true,
"author": "Patrick McLaughlin <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/BitGo/api-ts.git"
},
"bugs": {
"url": "https://github.com/BitGo/api-ts/issues"
},
"homepage": "https://github.com/BitGo/api-ts#readme",
"workspaces": [
"packages/**"
],
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"predistclean": "turbo run clean",
"distclean": "rm -rf node_modules packages/*/node_modules",
"lint-staged": "lint-staged",
"test": "turbo run test"
},
"pre-commit": "lint-staged",
"devDependencies": {
"@semantic-release/github": "8.0.4",
"@semantic-release/npm": "9.0.1",
"@semrel-extra/npm": "1.2.0",
"lint-staged": "13.0.3",
"multi-semantic-release": "2.13.0",
"pre-commit": "1.2.2",
"prettier": "2.5.1",
"turbo": "1.3.1",
"typescript": "4.6.4"
}
}