forked from microsoft/typespec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.18 KB
/
package.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@cadl-lang/compiler",
"version": "0.21.0",
"description": "Cadl Compiler Preview",
"author": "Microsoft Corporation",
"license": "MIT",
"homepage": "https://github.com/Azure/adl",
"readme": "https://github.com/Azure/adl/blob/master/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/adl.git"
},
"bugs": {
"url": "https://github.com/Azure/adl/issues"
},
"keywords": [
"cadl",
"cli"
],
"type": "module",
"main": "dist/core/index.js",
"types": "dist/core/index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"bin": {
"cadl": "cmd/cadl.js",
"cadl-server": "cmd/cadl-server.js"
},
"files": [
"lib/*.cadl",
"dist/**",
"!dist/test/**"
],
"scripts": {
"build": "npm run compile",
"compile": "tsc -p .",
"watch": "tsc -p . --watch",
"dogfood": "node scripts/dogfood.js",
"test": "mocha --timeout 5000 --require source-map-support/register --ignore 'dist/test/manual/**/*.js' 'dist/test/**/*.js'",
"test-official": "mocha --forbid-only --timeout 5000 --require source-map-support/register --ignore 'dist/test/manual/**/*.js' 'dist/test/**/*.js'",
"regen-samples": "node scripts/regen-samples.js",
"regen-nonascii": "node scripts/regen-nonascii.js",
"fuzz": "node dist/test/manual/fuzz.js run"
},
"dependencies": {
"ajv": "~8.4.0",
"glob": "~7.1.6",
"js-yaml": "~4.1.0",
"mkdirp": "~1.0.4",
"prettier": "~2.4.1",
"node-fetch": "~2.6.1",
"prompts": "~2.4.1",
"resolve": "~1.20.0",
"vscode-languageserver-textdocument": "~1.0.1",
"vscode-languageserver": "~7.0.0",
"yargs": "~17.0.1",
"node-watch": "~0.7.1"
},
"devDependencies": {
"@types/glob": "~7.1.3",
"@types/js-yaml": "~4.0.1",
"@types/mkdirp": "~1.0.1",
"@types/mocha": "~7.0.2",
"@types/node": "~14.0.27",
"@types/node-fetch": "~2.5.12",
"@types/prettier": "^2.0.2",
"@types/prompts": "~2.0.14",
"@types/resolve": "~1.20.0",
"@types/yargs": "~17.0.2",
"grammarkdown": "~3.1.2",
"mocha": "~8.3.2",
"prettier-plugin-organize-imports": "~1.1.1",
"source-map-support": "~0.5.19",
"typescript": "~4.3.2"
}
}