forked from jonahsnider/convert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "base",
"version": "0.0.0-development",
"private": true,
"bugs": {
"url": "https://github.com/jonahsnider/convert/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonahsnider/convert.git"
},
"license": "MIT",
"author": {
"name": "Jonah Snider",
"email": "jonah@jonah.pw",
"url": "https://jonahsnider.com"
},
"sideEffects": false,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build --",
"docs": "turbo run docs --",
"lint": "turbo run lint --",
"size": "turbo run size --",
"style": "turbo run style --",
"test": "turbo run build size style lint validate-api test",
"test:coverage": "turbo run build size style lint validate-api test:coverage",
"validate-api": "turbo run validate-api --",
"validate-api:local": "turbo run validate-api:local --"
},
"prettier": "@jonahsnider/prettier-config",
"devDependencies": {
"@jonahsnider/prettier-config": "1.1.2",
"prettier": "2.8.1",
"turbo": "1.6.3"
},
"engines": {
"node": "18.x"
},
"packageManager": "yarn@3.3.0"
}