forked from apple/app-store-server-library-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 899 Bytes
/
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
{
"name": "@apple/app-store-server-library",
"version": "0.1.0",
"description": "The App Store Server Library",
"main": "dist/index.js",
"keywords": [],
"author": "Apple Inc.",
"license": "MIT",
"repository": {
"url": "https://github.com/apple/app-store-server-library-node"
},
"types": "dist/index.d.ts",
"dependencies": {
"@types/jsonwebtoken": "^8.5.9",
"@types/jsrsasign": "^10.5.8",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.3",
"base64url": "^3.0.1",
"jsonwebtoken": "^9.0.0",
"jsrsasign": "^10.7.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.23.28",
"typescript": "^5.0.3"
},
"scripts": {
"build": "tsc -p .",
"test": "jest",
"build-docs": "typedoc index.ts"
},
"files": [
"dist"
]
}