-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 967 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 967 Bytes
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
{
"name": "jsign",
"version": "1.1.0",
"files": ["dist"],
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
]
}
},
"engines": {
"node": ">=22"
},
"scripts": {
"prepublishOnly": "npm run test && npm run clean && npm run build",
"clean": "rimraf dist && rimraf test-dist",
"build": "tsc",
"test": "npm run build-tests && npm run exec-tests",
"build-tests": "tsc --project tsconfig.test.json",
"exec-tests": "node --test \"test-dist/**/*.test.js\""
},
"author": "rlqd.dev",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/node": "^24.1.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"bugs": {
"url": "https://github.com/rlqd/jsign/issues"
},
"repository": {
"url": "https://github.com/rlqd/jsign",
"type": "git"
},
"keywords": [
"signature",
"webhook",
"request"
]
}