-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "update-certs",
"version": "1.0.0",
"description": "Update TLS servers certificates without downtime",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"format": "prettier --write \"index.ts\"",
"lint": "eslint",
"version": "npm run format && git add -A .",
"postversion": "git push && git push --tags",
"generate-api-reference": "api-extractor run; api-documenter markdown -i ./temp/ -o ./docs/"
},
"keywords": [],
"author": "Engin Aydogan",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"@microsoft/api-documenter": "^7.19.27",
"@types/debounce": "^1.2.1",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-jest": "^29.3.1",
"eslint": "^8.32.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"@microsoft/api-extractor": "^7.33.7",
"chokidar": "^3.5.3",
"debounce": "^1.2.1"
}
}