-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "plaxtony",
"version": "1.10.5",
"description": "Static code analysis of SC2 Galaxy Script",
"license": "MIT",
"keywords": [
"sc2",
"starcraft",
"galaxy",
"galaxy script"
],
"author": {
"name": "Talv",
"url": "https://github.com/Talv"
},
"bugs": {
"url": "https://github.com/Talv/plaxtony/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Talv/plaxtony.git"
},
"scripts": {
"clean": "rm -rf lib/*",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "mocha --config .mocharc.json",
"test:watch": "mocha --config .mocharc.json --watch",
"test:coverage": "nyc mocha --config .mocharc-nyc.json",
"lint": "eslint . --ext .ts"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"fast-glob": "^3.2.11",
"fs-extra": "^8.1.0",
"sax": "^1.2.4",
"vscode-languageserver": "6.2.0-next.2",
"vscode-languageserver-textdocument": "^1.0.4",
"vscode-uri": "^1.0.8",
"winston": "^3.2.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/fs-extra": "^8.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "^14.14.31",
"@types/sax": "^1.0.0",
"@types/xml2js": "^0.4.2",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"chai": "^4.3.6",
"eslint": "^8.10.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"source-map-support": "^0.5.4",
"ts-node": "^10.7.0",
"typescript": "^3.7.2"
}
}