microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1b74b19bc12c226dcd0f3fcd4eab6d66babbc2a8

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/internal-build-utils/package.json

60lines · modecode

1{
2 "name": "@cadl-lang/internal-build-utils",
3 "version": "0.3.3",
4 "author": "Microsoft Corporation",
5 "description": "Internal library to Cadl providing helpers to build.",
6 "homepage": "https://github.com/Azure/cadl",
7 "readme": "https://github.com/Azure/cadl/blob/master/README.md",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/Azure/cadl.git"
12 },
13 "bugs": {
14 "url": "https://github.com/Azure/cadl/issues"
15 },
16 "keywords": [
17 "cadl"
18 ],
19 "type": "module",
20 "main": "dist/src/index.js",
21 "bin": {
22 "cadl-build-tool": "cmd/cli.js"
23 },
24 "engines": {
25 "node": ">=16.0.0"
26 },
27 "scripts": {
28 "clean": "rimraf ./dist ./temp",
29 "build": "tsc -p .",
30 "watch": "tsc -p . --watch",
31 "test": "mocha",
32 "test-official": "c8 mocha --forbid-only --reporter mocha-multi-reporters",
33 "lint": "eslint . --ext .ts --max-warnings=0",
34 "lint:fix": "eslint . --fix --ext .ts"
35 },
36 "files": [
37 "lib/*.cadl",
38 "dist/**",
39 "!dist/test/**"
40 ],
41 "dependencies": {
42 "yargs": "~17.6.2",
43 "strip-json-comments": "~4.0.0",
44 "cspell": "~6.14.3"
45 },
46 "devDependencies": {
47 "@types/mocha": "~10.0.0",
48 "@types/node": "~18.11.9",
49 "@types/yargs": "~17.0.2",
50 "@cadl-lang/eslint-config-cadl": "~0.5.0",
51 "eslint": "^8.12.0",
52 "mocha": "~10.1.0",
53 "mocha-junit-reporter": "~2.2.0",
54 "mocha-multi-reporters": "~1.5.1",
55 "c8": "~7.12.0",
56 "rimraf": "~3.0.2",
57 "typescript": "~4.9.3",
58 "chokidar": "~3.5.3"
59 }
60}
61