microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a6b7827fcd2db3bf604d42e235216c8d5b244f13

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/library-linter/package.json

69lines · modecode

1{
2 "name": "@typespec/library-linter",
3 "version": "0.48.0",
4 "author": "Microsoft Corporation",
5 "description": "TypeSpec library for linting another library.",
6 "homepage": "https://microsoft.github.io/typespec",
7 "readme": "https://github.com/microsoft/typespec/blob/master/README.md",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/microsoft/typespec.git"
12 },
13 "bugs": {
14 "url": "https://github.com/microsoft/typespec/issues"
15 },
16 "keywords": [
17 "typespec"
18 ],
19 "type": "module",
20 "main": "dist/src/index.js",
21 "exports": {
22 ".": "./dist/src/index.js",
23 "./testing": "./dist/src/testing/index.js"
24 },
25 "typesVersions": {
26 "*": {
27 "*": [
28 "./dist/src/index.d.ts"
29 ],
30 "testing": [
31 "./dist/src/testing/index.d.ts"
32 ]
33 }
34 },
35 "tspMain": "dist/src/index.js",
36 "engines": {
37 "node": ">=14.0.0"
38 },
39 "scripts": {
40 "clean": "rimraf ./dist ./temp",
41 "build": "tsc -p .",
42 "watch": "tsc -p . --watch",
43 "test": "mocha",
44 "test-official": "c8 mocha --forbid-only --reporter mocha-multi-reporters",
45 "lint": "eslint . --ext .ts --max-warnings=0",
46 "lint:fix": "eslint . --fix --ext .ts"
47 },
48 "files": [
49 "lib/*.tsp",
50 "dist/**",
51 "!dist/test/**"
52 ],
53 "peerDependencies": {
54 "@typespec/compiler": "workspace:~0.48.0"
55 },
56 "devDependencies": {
57 "@types/mocha": "~10.0.1",
58 "@types/node": "~18.11.9",
59 "@typespec/compiler": "workspace:~0.48.0",
60 "@typespec/eslint-config-typespec": "workspace:~0.48.0",
61 "eslint": "^8.42.0",
62 "mocha": "~10.2.0",
63 "mocha-junit-reporter": "~2.2.0",
64 "mocha-multi-reporters": "~1.5.1",
65 "c8": "~8.0.0",
66 "rimraf": "~5.0.1",
67 "typescript": "~5.1.3"
68 }
69}
70