microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
064161d8277a88b3facccca58df87aa332bf9187

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/lint/package.json

69lines · modecode

1{
2 "name": "@typespec/lint",
3 "version": "0.40.0",
4 "author": "Microsoft Corporation",
5 "description": "Helper ",
6 "homepage": "https://github.com/Azure/typespec",
7 "readme": "https://github.com/Azure/typespec/blob/main/README.md",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/Azure/typespec.git"
12 },
13 "bugs": {
14 "url": "https://github.com/Azure/typespec/issues"
15 },
16 "keywords": [
17 "typespec"
18 ],
19 "type": "module",
20 "main": "dist/src/index.js",
21 "typespecMain": "dist/src/index.js",
22 "exports": {
23 ".": "./dist/src/index.js",
24 "./testing": "./dist/src/testing/index.js"
25 },
26 "typesVersions": {
27 "*": {
28 "*": [
29 "./dist/src/index.d.ts"
30 ],
31 "testing": [
32 "./dist/src/testing/index.d.ts"
33 ]
34 }
35 },
36 "engines": {
37 "node": ">=16.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 "dist/**",
50 "!dist/test/**"
51 ],
52 "peerDependencies": {
53 "@typespec/compiler": "~0.40.0"
54 },
55 "devDependencies": {
56 "@types/mocha": "~10.0.0",
57 "@types/node": "~18.11.9",
58 "@typespec/compiler": "~0.40.0",
59 "@typespec/eslint-config-typespec": "~0.5.0",
60 "@typespec/eslint-plugin": "~0.40.0",
61 "eslint": "^8.12.0",
62 "mocha": "~10.1.0",
63 "mocha-junit-reporter": "~2.2.0",
64 "mocha-multi-reporters": "~1.5.1",
65 "c8": "~7.12.0",
66 "rimraf": "~3.0.2",
67 "typescript": "~4.9.3"
68 }
69}
70