-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.43 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.43 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@opsvent/hmac",
"version": "1.1.1",
"description": "Feature complete, easy to use signing and signature verification for all of your secure API request needs. It works both in browsers and in Node.JS.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && ts-node --project ./tsconfig.json demo/index.ts",
"build": "rimraf dist && cross-env NODE_ENV=production tsc",
"typecheck": "tsc --noEmit",
"lint": "esw --color --ext .ts src",
"lint:fix": "esw --color --fix --ext .ts src",
"lint:watch": "esw --color --fix --watch --cache --ext .ts src",
"release": "standard-version",
"release:pre": "standard-version --prerelease"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opsvent/hmac.git"
},
"keywords": [
"hmac",
"opsvent"
],
"author": "Opsvent <contact@opsvent.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/opsvent/hmac/issues"
},
"homepage": "https://github.com/opsvent/hmac#readme",
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-watch": "^8.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"crypto-js": "^4.1.1",
"nanoid": "^3.3.6"
},
"standard-version": {
"scripts": {
"prerelease": "git fetch --all --tags"
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "imp",
"section": "Improvements"
},
{
"type": "ci",
"section": "Build/CI"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "refactor",
"section": "Refactor"
},
{
"type": "test",
"section": "Testing"
},
{
"type": "perf",
"section": "Performance"
},
{
"type": "intern",
"section": "Internal"
}
]
}
}