-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 KB
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
58
{
"name": "hmac-obj",
"version": "1.0.6",
"description": "JavaScript implementation of HMAC generation and verification for the browser and node.js.",
"keywords": [
"browser",
"crypto",
"cryptography",
"hmac",
"hmac-sha1",
"hmac-sha256",
"hmac-sha384",
"hmac-sha512",
"subtlecrypto",
"Web Crypto API"
],
"main": "./cjs/hmac-obj.cjs",
"module": "./src/hmac-obj.js",
"exports": {
"import": "./src/hmac-obj.js",
"require": "./cjs/hmac-obj.cjs"
},
"type": "module",
"directories": {
"example": "examples"
},
"scripts": {
"build": "rollup -c",
"build:cjs": "rollup ./src/hmac-obj.js --file ./cjs/hmac-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/HMACObj.git"
},
"author": "UmamiAppearance",
"license": "MIT",
"bugs": {
"url": "https://github.com/UmamiAppearance/HMACObj/issues"
},
"homepage": "https://github.com/UmamiAppearance/HMACObj#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"
}
}