-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "bc-vscode-utilities",
"version": "1.0.4",
"description": "The basic utillities for LSP extensions for vscode",
"main": "./lib/src/main.js",
"types": "./lib/src/main.d.ts",
"scripts": {
"compile": "tsc -b",
"build": "npm run clean && npm run compile",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"test": "mocha",
"clean": "rimraf lib",
"pretest": "npm run compile",
"prepublishOnly": "npm test",
"preversion": "",
"postversion": "git push && git push --tags",
"version": "git add -A src",
"watch": "tsc -w -p ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blockception/BC-VSCode-Utilities.git"
},
"keywords": [
"utillities",
"vscode"
],
"author": "Blockception Ltd",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Blockception/BC-VSCode-Utilities/issues"
},
"homepage": "https://github.com/Blockception/BC-VSCode-Utilities#readme",
"files": [
"lib/**/*",
"!lib/test"
],
"dependencies": {
"bc-vscode-words": "^1.3.1",
"comment-json": "^4.1.0",
"fast-glob": "^3.2.5",
"vscode-languageserver": "^8.0.1",
"vscode-languageserver-textdocument": "^1.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^10.0.0",
"@types/node": "^18.0.0",
"chai": "^4.3.4",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
}
}