-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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": "crypt3-md5",
"version": "1.1.1",
"description": "Implementation of glibc crypt(3) MD5 password hashing method in TypeScript",
"keywords": [
"crypt",
"crypt3",
"md5",
"glibc",
"password",
"hash"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"start": "npm run build -- --watch",
"test": "jest",
"lint": "eslint src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mszula/crypt3-md5.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mszula/crypt3-md5/issues"
},
"homepage": "https://github.com/mszula/crypt3-md5#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
}
}