-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "ink-tmlanguage",
"version": "0.2.3",
"description": "TextMate grammar files for Ink. (VS Code, Sublime Text, and Atom)",
"keywords": [
"ink",
"inkle",
"inky",
"TextMate Language",
"TMLanguage",
"TextMate Grammar",
"Grammar",
"Syntax Highlighting"
],
"homepage": "https://github.com/inkle/ink-tmlanguage#readme",
"bugs": {
"url": "https://github.com/inkle/ink-tmlanguage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inkle/ink-tmlanguage.git"
},
"license": "MIT",
"author": "Frédéric Maquin <[email protected]> (https://ephread.com/)",
"files": [
"grammars/Ink.tmLanguage"
],
"scripts": {
"build": "tsc -p build && node build/build.js",
"prepublishOnly": "npm run build",
"watch": "npm run build && chokidar 'grammars/*.YAML-tmLanguage' -c 'npm run build'",
"test": "npx vscode-tmgrammar-test -c -s source.ink -g grammars/Ink.tmLanguage -t 'tests/cases/**/*.ink'"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.8",
"chokidar": "^3.5.2",
"chokidar-cli": "^3.0.0",
"js-yaml": "^4.1.0",
"plist": "^3.0.4",
"typescript": "^4.5.4",
"vscode-textmate": "^6.0.0",
"vscode-tmgrammar-test": "0.0.11"
}
}