-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "vscode-tmgrammar-test",
"version": "0.1.3",
"description": "Test runner for VSCode textmate grammars",
"homepage": "https://github.com/PanAeon/vscode-tmgrammar-test",
"repository": {
"type": "git",
"url": "https://github.com/PanAeon/vscode-tmgrammar-test"
},
"bugs": {
"url": "https://github.com/PanAeon/vscode-tmgrammar-test/issues"
},
"scripts": {
"build": "npx tsc",
"coverage": "npx nyc --reporter=html mocha -r ts-node/register \"test/**/*.test.ts\"",
"format": "prettier --config .prettierrc \"src/**/*.ts\" \"test/**/*.ts\" --write",
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"test": "mocha -r ts-node/register \"test/**/*.test.ts\""
},
"bin": {
"vscode-tmgrammar-test": "./dist/unit.js",
"vscode-tmgrammar-snap": "./dist/snapshot.js"
},
"keywords": [
"test",
"unit-test",
"textmate",
"grammar",
"visual",
"studio",
"code"
],
"author": "vitalii voloshyn",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/diff": "^4.0.2",
"@types/glob": "^7.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.9",
"@types/xml2js": "^0.4.11",
"chai": "^4.2.0",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"prettier": "^2.1.2",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"typescript": "^5.1.6",
"xml2js": "^0.6.0"
},
"dependencies": {
"bottleneck": "^2.19.5",
"chalk": "^2.4.2",
"commander": "^9.2.0",
"diff": "^4.0.2",
"glob": "^7.1.6",
"vscode-oniguruma": "^1.5.1",
"vscode-textmate": "^7.0.1"
}
}