-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 1.76 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
75
76
77
78
79
80
{
"name": "stardog-language-servers",
"private": true,
"author": {
"name": "Stardog Union",
"url": "https://stardog.com"
},
"contributors": [
{
"name": "Jason Rogers",
"email": "[email protected]"
},
{
"name": "Ty Soehngen",
"email": "[email protected]"
},
{
"name": "Sandy Gonzales",
"email": "[email protected]"
},
{
"name": "Annee Barrett",
"email": "[email protected]"
},
{
"name": "Brian Rubinton",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/stardog-union/stardog-language-servers.git"
},
"bugs": {
"url": "https://github.com/stardog-union/stardog-language-servers/issues"
},
"homepage": "https://github.com/stardog-union/stardog-language-servers#readme",
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"husky": "^1.2.1",
"jest": "^23.6.0",
"lerna": "^3.6.0",
"lint-staged": "^8.1.0",
"portscanner": "^2.2.0",
"prettier": "^1.15.3",
"ts-jest": "^23.10.5",
"typescript": "^3.5.1",
"vscode-jsonrpc": "^4.0.0",
"vscode-languageserver-protocol": "^3.14.1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna run clean",
"lint": "lerna run lint",
"test": "jest",
"pack": "lerna run pack",
"build": "lerna run build",
"types": "lerna run types",
"format": "prettier 'packages/*/src/**/*.[tj]s' -- write",
"publish": "lerna publish --skip-git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"packages/*/src/**/*.[tj]s": [
"prettier --write",
"git add"
]
}
}
}