forked from microsoft/vscode-textmate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.04 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": "4.2.2",
"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": "npm run compile && mocha out/tests/*.test.js",
"benchmark": "node benchmark/benchmark.js",
"inspect": "node scripts/inspect.js",
"version": "npm run test && node scripts/release.js",
"postversion": "git push && git push --tags",
"prepublishOnly": "node scripts/release.js"
},
"dependencies": {
"oniguruma": "^7.2.0"
},
"devDependencies": {
"@types/mocha": "5.2.7",
"@types/node": "^12.6.2",
"durations": "^3.4.1",
"mocha": "^6.1.4",
"onigasm": "^2.2.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}