forked from Levertion/mcfunction-langserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 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
{
"name": "mcfunction-langserver",
"description": "Language Server for Minecraft Functions",
"version": "0.0.1",
"author": "Levertion",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "parcel build src/index.ts --target=node --no-minify",
"test": "mocha --opts ./mocha.opts",
"check": "tsc -p tsconfig.json --noEmit",
"lint": "ts-node node_modules/tslint/bin/tslint --project .",
"prettier": "prettier **/*.{ts,json,yml}",
"prettier:write": "npm run prettier -- --write"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run build && git add dist"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Levertion/mcfunction-langserver/"
},
"files": [
"dist",
"src"
],
"keywords": [
"Minecraft"
],
"prettier": {
"tabWidth": 4,
"proseWrap": "always"
},
"dependencies": {
"js-combinatorics": "^0.5.4",
"long": "^4.0.0",
"mc-nbt-paths": "git+https://github.com/MrYurihi/mc-nbt-paths.git",
"minecraft-json-schemas": "git+https://github.com/Levertion/minecraft-json-schemas.git",
"node-interval-tree": "^1.3.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"sprintf-js": "^1.1.2",
"synchronous-promise": "^2.0.6",
"tslib": "^1.9.3",
"vscode-json-languageservice": "^3.2.0",
"vscode-languageserver": "^5.2.1",
"vscode-uri": "^1.0.6"
},
"devDependencies": {
"@types/js-combinatorics": "0.5.31",
"@types/long": "4.0.0",
"@types/mocha": "5.2.6",
"@types/node": "10.12.27",
"@types/request-promise-native": "1.0.15",
"@types/rimraf": "2.0.2",
"@types/sprintf-js": "1.1.2",
"husky": "1.3.1",
"mocha": "6.0.2",
"parcel": "1.11.0",
"prettier": "1.16.4",
"pretty-quick": "1.10.0",
"rimraf": "2.6.3",
"ts-mocha": "6.0.0",
"tslint": "5.13.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.3.3333",
"vscode-languageserver-types": "3.14.0"
}
}