-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
68 lines (68 loc) · 1.76 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
{
"name": "grammarkdown",
"version": "3.3.2",
"description": "Markdown-like DSL for defining syntactic grammars for programming languages.",
"license": "MIT",
"keywords": [
"grammar",
"language",
"syntax",
"dsl",
"javascript",
"typescript",
"ecmascript"
],
"author": {
"name": "Ron Buckton",
"email": "[email protected]",
"url": "http://github.com/rbuckton"
},
"repository": {
"type": "git",
"url": "https://github.com/rbuckton/grammarkdown.git"
},
"bugs": {
"url": "https://github.com/rbuckton/grammarkdown/issues"
},
"homepage": "https://github.com/rbuckton/grammarkdown",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"bin": {
"grammarkdown": "./bin/grammarkdown"
},
"scripts": {
"test": "gulp test",
"build": "gulp build",
"prepublishOnly": "gulp --series build test",
"prepare-docs": "gulp prepare-docs"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.8.55",
"@microsoft/api-extractor": "^7.9.21",
"@microsoft/api-extractor-model": "^7.9.6",
"@microsoft/tsdoc": "^0.12.21",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.1",
"@types/source-map-support": "^0.5.1",
"@types/yargs": "^15.0.5",
"ajv": "^6.12.5",
"chalk": "^4.0.0",
"del": "^5.1.0",
"ecmarkup": "^3.19.1",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"jest": "^26.4.2",
"jest-matcher-utils": "^26.4.2",
"jsonc-parser": "^2.3.1",
"source-map-support": "^0.5.16",
"ts-jest": "^26.4.0",
"typescript": "^4.4.4",
"yargs": "^15.4.1"
},
"dependencies": {
"@esfx/async-canceltoken": "^1.0.0-pre.13",
"@esfx/cancelable": "^1.0.0-pre.13",
"@esfx/disposable": "^1.0.0-pre.13"
}
}