-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "ssl-checker",
"version": "2.0.10",
"description": "ssl-checker",
"main": "./lib/cjs/index.js",
"module": "./lib/es/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage && cat ./coverage/lcov.info | codacy-coverage -v",
"build": "tsc --project tsconfig.types.json && rollup -c --configPlugin typescript --perf",
"format": "prettier --write '**/*.{ts,md}'",
"precommit": "pretty-quick --staged",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyaa/ssl-checker.git"
},
"keywords": [
"ssl",
"checker"
],
"author": "Dyaa Eldin <[email protected]> (https://dyaa.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dyaa/ssl-checker/issues"
},
"homepage": "https://github.com/dyaa/ssl-checker#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.13.0",
"@vitest/coverage-istanbul": "^0.28.4",
"codacy-coverage": "^3.2.0",
"prettier": "^2.0.4",
"pretty-quick": "^3.0.2",
"rollup": "^3.14.0",
"typescript": "^4.9.5",
"vitest": "^1.3.1"
},
"files": [
"lib/**/*"
]
}