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
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"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",
"test": "turbo run test"
},
"pre-commit": "lint-staged",
"devDependencies": {
"@semantic-release-extras/github-comment-specific": "1.0.5",
"@semrel-extra/npm": "1.2.0",
"@types/node": "18.13.0",
"lint-staged": "13.1.2",
"multi-semantic-release": "3.0.1",
"pre-commit": "1.2.2",
"prettier": "2.8.3",
"turbo": "1.7.4",
"typescript": "4.6.4"
},
"engines": {
"npm": ">=7"
}
}