forked from streetsidesoftware/vscode-spell-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 981 Bytes
/
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
{
"name": "vscode-spell-checker",
"version": "1.7.10",
"description": "Spell checker for VS Code",
"private": true,
"engines": {
"node": ">10.0.0"
},
"scripts": {
"postinstall": "npm run bootstrap && npm run build",
"bootstrap": "lerna bootstrap",
"build": "lerna run build --no-sort --concurrency 1",
"clean": "lerna run clean && lerna clean",
"test-client-integration": "lerna run test-integration",
"test": "lerna run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/vscode-spell-checker.git"
},
"keywords": [
"Spell",
"Checker",
"Extension",
"VSCode"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/vscode-spell-checker/issues"
},
"homepage": "https://github.com/streetsidesoftware/vscode-spell-checker#readme",
"devDependencies": {
"lerna": "^3.14.1",
"typescript": "^3.4.5"
}
}