-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 KB
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
{
"name": "glenstack",
"private": true,
"homepage": "https://glenstack.com/",
"bugs": {
"url": "https://github.com/glenstack/glenstack/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Greg Brimble",
"email": "[email protected]",
"url": "https://glenstack.com/"
},
{
"name": "James O'Donnell",
"email": "[email protected]",
"url": "https://glenstack.com/"
}
],
"devDependencies": {
"husky": "4.3.0",
"lerna": "3.22.1",
"typescript": "4.0.2"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:glenstack/glenstack.com"
},
"scripts": {
"postinstall": "lerna bootstrap",
"lint": "lerna run lint",
"format": "lerna run format",
"lint:fix": "npm run lint || (npm run format && npm run lint)",
"pretest": "npm run build",
"test": "lerna run test:ci",
"build": "lerna run build",
"clean": "lerna run clean"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix && npm test"
}
}
}