-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 2.4 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "sumchecker",
"version": "3.0.1",
"description": "Checksum validator",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/malept/sumchecker.git"
},
"author": "Mark Lee",
"license": "Apache-2.0",
"engines": {
"node": ">= 14.19.0"
},
"scripts": {
"ava": "ava",
"build": "tsc",
"coverage": "nyc --reporter=lcov --reporter=text ava",
"docs": "typedoc src/index.ts",
"lint": "prettier --check . && eslint --ext .ts . && npm run lint:docs",
"lint:docs": "typedoc --emit none --treatWarningsAsErrors src/index.ts",
"prepare": "npm run build",
"test": "npm run lint && npm run ava",
"postinstall": "husky install"
},
"keywords": [
"checksum",
"hash"
],
"bugs": {
"url": "https://github.com/malept/sumchecker/issues"
},
"homepage": "https://github.com/malept/sumchecker#readme",
"files": [
"dist"
],
"dependencies": {
"debug": "^4.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@malept/eslint-config": "^2.1.0",
"@types/debug": "^4.1.5",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"ava": "^5.0.1",
"eslint": "^8.20.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-tsdoc": "^0.2.5",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nyc": "^15.0.0",
"prettier": "^2.0.1",
"source-map-support": "^0.5.16",
"ts-node": "^10.0.0",
"typedoc": "^0.24.1",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "~5.1.5"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"eslintConfig": {
"extends": "@malept/eslint-config/typescript"
},
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/malept"
},
{
"type": "tidelift",
"url": "https://tidelift.com/subscription/pkg/npm-sumchecker?utm_medium=referral&utm_source=npm_fund"
}
],
"lint-staged": {
"*.{json,md,yml}": "prettier --write",
"*.ts": [
"eslint --fix --ext .ts"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
},
"volta": {
"node": "14.19.0"
}
}