-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "yaml-tm-convert",
"version": "1.0.0",
"description": "Process `YAML` TextMate grammar files into the more compatible `JSON` format—includes support for variable expansions, and a watch mode (by default).",
"main": "dist/index.js",
"scripts": {
"compile": "tsc --build ./src/tsconfig.json",
"compile:watch": "yarn run compile --watch"
},
"bin": {
"yamltm-convert": "./dist/yamltm-convert.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/disco0/yaml-tm-convert.git"
},
"keywords": [
"grammar",
"textmate",
"yaml",
"yaml-tmlanguage",
"json-tmlanguage",
"tmlanguage"
],
"dependencies": {
"chalk": "^4.1.1",
"chokidar": "^3.5.1",
"js-yaml": "^4.1.0",
"plist": "^3.0.2",
"yargs": "^17.0.1"
},
"devDependencies": {
"tsdef": "^0.0.14",
"@tsconfig/node14": "^1.0.0",
"@types/chalk": "^2.2.0",
"@types/js-yaml": "^4.0.1",
"@types/node": "14",
"@types/plist": "^3.0.2",
"@types/yargs": "^17.0.0"
},
"author": "disco0",
"license": "ISC",
"bugs": {
"url": "https://github.com/disco0/yaml-tm-convert/issues"
},
"homepage": "https://github.com/disco0/yaml-tm-convert#readme"
}