-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.46 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
58
59
60
61
62
{
"name": "digital-signature-nodejs-sdk",
"version": "3.0.1",
"description": "NodeJS SDK to generate and validate digital signatures",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"start": "ts-node examples/example.ts",
"test": "eslint . && jest",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run tsc"
},
"pre-commit": [
"test"
],
"keywords": [
"eBay",
"Digital Signature",
"ED25519",
"RSA"
],
"author": "Lokesh Rishi",
"license": "Apache-2.0",
"dependencies": {
"express": "^4",
"jose": "^4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^26",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-ebay": "^1.1.1",
"jest": "^26",
"ts-jest": "^26",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/eBay/digital-signature-nodejs-sdk.git"
},
"bugs": {
"url": "https://github.com/eBay/digital-signature-nodejs-sdk/issues"
},
"homepage": "https://github.com/eBay/digital-signature-nodejs-sdk#readme",
"engines": {
"node": ">=16.0.0"
}
}