forked from cotag/ts-md5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"bugs": {
"url": "/~https://github.com/cotag/ts-md5/issues"
},
"contributors": [],
"devDependencies": {
"@types/jasmine": "^2.5.53",
"@types/node": "^13.11.1",
"@types/webpack": "^3.0.5",
"jasmine-core": "latest",
"karma": "latest",
"karma-chrome-launcher": "latest",
"karma-jasmine": "latest",
"karma-webpack": "latest",
"ts-loader": "^2.3.1",
"typescript": "latest",
"webpack": "^3.3.0",
"denoify": "^0.4.1"
},
"dependencies": {},
"description": "TypeScript MD5 implementation",
"directories": {},
"homepage": "/~https://github.com/cotag/ts-md5",
"license": "MIT",
"main": "dist/md5.js",
"maintainers": [
{
"name": "Stephen von Takach",
"email": "steve@cotag.me"
}
],
"name": "ts-md5",
"optionalDependencies": {},
"peerDependencies": {},
"repository": {
"type": "git",
"url": "git+/~https://github.com/cotag/ts-md5.git"
},
"scripts": {
"build": "node node_modules/typescript/bin/tsc --p . && cat ./dist/md5_file_hasher.js ./src/worker.js >> ./dist/md5.js && grep -v exports. ./dist/md5.js > ./dist/md5_worker.js && node node_modules/typescript/bin/tsc && denoify",
"test": "node node_modules/karma/bin/karma start karma.conf.js"
},
"types": "dist/md5.d.ts",
"version": "1.2.7"
}