forked from BitGo/api-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 KB
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
{
"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 <patrickmclaughlin@bitgo.com>",
"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": "npm@8.5.0",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"predistclean": "turbo run clean",
"distclean": "rm -rf node_modules packages/*/node_modules",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"lint-staged": "lint-staged",
"postinstall": "patch-package",
"test": "turbo run test"
},
"pre-commit": "lint-staged",
"devDependencies": {
"@semantic-release-extras/github-comment-specific": "1.0.7",
"@semantic-release/npm": "10.0.5",
"@types/node": "20.5.0",
"lint-staged": "14.0.1",
"multi-semantic-release": "3.0.2",
"patch-package": "8.0.0",
"pre-commit": "1.2.2",
"prettier": "3.0.3",
"turbo": "1.10.13",
"typescript": "4.6.4"
},
"engines": {
"npm": ">=7"
}
}