-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "vscode-textmate",
"version": "9.1.0",
"description": "VSCode TextMate grammar helpers",
"author": {
"name": "Microsoft Corporation"
},
"main": "./release/main.js",
"typings": "./release/main.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-textmate"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/vscode-textmate/issues"
},
"scripts": {
"watch": "tsc --watch",
"compile": "tsc",
"test": "mocha --ui=tdd ./out/tests/all.test.js",
"benchmark": "node benchmark/benchmark.js",
"inspect": "node out/tests/inspect.js",
"tmconvert": "node scripts/tmconvert.js",
"version": "npm run compile && npm run test",
"postversion": "git push && git push --tags",
"prepublishOnly": "tsc && webpack --progress",
"bundle": "webpack"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^16.6.1",
"copy-webpack-plugin": "^9.1.0",
"mocha": "^9.2.2",
"typescript": "^4.3.5",
"vscode-oniguruma": "^1.5.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
}
}