-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 911 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 911 Bytes
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
{
"name": "@xarples/tools",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"api-extractor": "lerna run api-extractor --stream",
"api-documenter": "lerna run api-documenter --stream",
"build": "lerna run build --stream",
"test": "lerna run test --stream"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@microsoft/api-documenter": "^7.8.14",
"@microsoft/api-extractor": "^7.8.12",
"@types/jest": "^26.0.0",
"@types/lru-cache": "^5.1.0",
"@types/node": "^14.0.13",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}