UNPKG

1.13 kBJSONView Raw
1{
2 "name": "vscode-textmate",
3 "version": "8.0.0",
4 "description": "VSCode TextMate grammar helpers",
5 "author": {
6 "name": "Microsoft Corporation"
7 },
8 "main": "./release/main.js",
9 "typings": "./release/main.d.ts",
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/microsoft/vscode-textmate"
13 },
14 "license": "MIT",
15 "bugs": {
16 "url": "https://github.com/microsoft/vscode-textmate/issues"
17 },
18 "scripts": {
19 "watch": "tsc --watch",
20 "compile": "tsc",
21 "test": "mocha --ui=tdd ./out/tests/all.test.js",
22 "benchmark": "node benchmark/benchmark.js",
23 "inspect": "node out/tests/inspect.js",
24 "tmconvert": "node scripts/tmconvert.js",
25 "version": "npm run compile && npm run test",
26 "postversion": "git push && git push --tags",
27 "prepublishOnly": "tsc && webpack --progress",
28 "bundle": "webpack"
29 },
30 "devDependencies": {
31 "@types/mocha": "^9.1.0",
32 "@types/node": "^16.6.1",
33 "copy-webpack-plugin": "^9.1.0",
34 "mocha": "^9.2.2",
35 "typescript": "^4.3.5",
36 "vscode-oniguruma": "^1.5.1",
37 "webpack": "^5.50.0",
38 "webpack-cli": "^4.8.0"
39 }
40}