-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
49
50
51
52
53
54
55
56
57
{
"name": "sha-obj",
"version": "1.0.7",
"description": "JavaScript implementation of SHA-(1/256/384/512) checksum calculation for the browser and node. [Crypto.subtle]",
"browser": "./dist/BrowserSHAObj.esm.js",
"main": "./cjs/sha-obj.cjs",
"module": "./src/sha-obj.js",
"exports": {
"import": "./src/sha-obj.js",
"require": "./cjs/sha-obj.cjs"
},
"type": "module",
"scripts": {
"build": "rollup -c",
"build:cjs": "rollup ./src/sha-obj.js --file ./cjs/sha-obj.cjs --format cjs -m",
"lint": "eslint ./src/*",
"lint:fix": "eslint ./src/* --fix",
"start": "http-server -a localhost -o ./examples/live-examples.html",
"test": "remembrance && no-bro-cote",
"test:dev": "no-bro-cote"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UmamiAppearance/SHAObj.git"
},
"keywords": [
"Browser",
"SHA-1",
"SHA-256",
"SHA-384",
"SHA-512",
"checksum",
"cryptography",
"hash-functions",
"subtlecrypto",
"Web Crypto API"
],
"author": "UmamiAppearance",
"license": "MIT",
"bugs": {
"url": "https://github.com/UmamiAppearance/SHAObj/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/UmamiAppearance/SHAObj#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"eslint": "^8.45.0",
"http-server": "^14.1.1",
"no-bro-cote": "^0.2.19",
"remembrance": "^0.3.1",
"rollup": "^3.26.2",
"rollup-plugin-import-manager": "^0.6.4"
},
"dependencies": {
"base-ex": "^0.8.1"
}
}