-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.12 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": "@cryptography/sha256",
"description": "High-performance synchronous SHA-256 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/sha256.min.js",
"module": "dist/es/sha256.js",
"types": "dist/typings/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/spalt08/cryptography.git",
"directory": "packages/sha256"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts}": [
"eslint"
]
},
"keywords": [
"sha256",
"javascript",
"crypto"
],
"bugs": {
"url": "https://github.com/spalt08/cryptography/issues"
},
"homepage": "https://github.com/spalt08/cryptography/tree/master/packages/sha256",
"files": [
"dist/*",
"package.json"
],
"license": "GPL-3.0-or-later"
}