-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.1 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.1 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
{
"name": "root-package",
"version": "1.0.0",
"description": "Welcome to the TypeSpec Muzzle project. This project aims to provide tooling to suppress TypeSpec linting issues from the CLI.",
"homepage": "https://github.com/BinkyLabs/TypeSpec-Muzzle#readme",
"bugs": {
"url": "https://github.com/BinkyLabs/TypeSpec-Muzzle/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BinkyLabs/TypeSpec-Muzzle.git"
},
"license": "MIT",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "npm --workspace @binkylabs/muzzle run test",
"test:watch": "npm --workspace @binkylabs/muzzle run test:watch",
"build": "npm --workspace @binkylabs/muzzle run build",
"lint": "npm --workspace @binkylabs/muzzle run lint",
"format": "npm --workspace @binkylabs/muzzle run format",
"lint:check": "npm --workspace @binkylabs/muzzle run lint:check",
"format:check": "npm --workspace @binkylabs/muzzle run format:check",
"pack": "npm --workspace @binkylabs/muzzle pack"
},
"workspaces": [
"@binkylabs/muzzle"
],
"private": true
}