-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "unixcrypt",
"version": "2.0.0",
"description": "Node.js implementation of Unixcrypt, specifically SHA-256 and SHA-512",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"clean": "rimraf dist",
"prep": "npm install && husky && chmod ug+x .husky/*",
"prepublishOnly": "npm run build",
"test": "vitest run --coverage.enabled --coverage.reporter=json-summary",
"test:watch": "vitest watch",
"test:watch:coverage": "vitest watch --coverage"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markusberg/unixcrypt.git"
},
"keywords": [
"sha256crypt",
"sha512crypt",
"unixcrypt"
],
"author": "Markus Berg",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/markusberg/unixcrypt/issues"
},
"homepage": "https://github.com/markusberg/unixcrypt#readme",
"devDependencies": {
"@types/node": "^18.19.15",
"@vitest/coverage-v8": "^1.2.2",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}