-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "@cryptography/sha512",
"description": "High-performance synchronous SHA-512 implementation for JavaScript",
"version": "0.2.0",
"author": "Konstantin Darutkin",
"scripts": {
"test": "jest --coverage",
"build": "rm -rf dist/* && rollup -c",
"analyze": "npm run build -- --analyze",
"prepublish": "npm test",
"pretest": "npm run build",
"publish": "npm publish"
},
"devDependencies": {
"@cryptography/utils": "^1.0.0"
},
"main": "dist/cjs/sha512.min.js",
"module": "dist/es/sha512.js",
"types": "dist/typings/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/spalt08/cryptography.git",
"directory": "packages/sha512"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts}": [
"eslint"
]
},
"keywords": [
"sha512",
"SHA-512",
"javascript",
"crypto"
],
"bugs": {
"url": "https://github.com/spalt08/cryptography/issues"
},
"homepage": "https://github.com/spalt08/cryptography/tree/master/packages/sha512",
"files": [
"dist/*",
"package.json"
],
"license": "GPL-3.0-or-later"
}