-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "file2md5",
"version": "1.3.0",
"description": "file2md5 is a browser-side implementation of file conversion to md5 format based on SparkMD5, which supports typescript friendly.",
"homepage": "https://github.com/bdwenxi/file2md5",
"repository": "git@github.com:bdwenxi/file2md5.git",
"license": "MIT",
"keywords": [
"md5",
"browser-side",
"spark",
"file2md5",
"md5 file browser"
],
"author": "bdwenxi <bdwenxi@gmail.com>",
"contributors": [
{
"name": "bdwenxi",
"email": "bdwenxi@gmail.com"
}
],
"main": "cjs/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"src",
"cjs",
"es"
],
"scripts": {
"build": "rm -rf es cjs && tsc & tsc --module esnext --outDir ./es",
"build:check": "tsc",
"test": "skr test --coverage"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"spark-md5": "^3.0.1"
},
"devDependencies": {
"@types/jest": "29.4.4",
"@types/lodash.noop": "3.0.7",
"@types/spark-md5": "3.0.2",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.3",
"reskript": "0.26.7",
"typescript": "4.9.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
}
}