-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
42 lines (42 loc) · 980 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
39
40
41
42
{
"name": "@apple/app-store-server-library",
"version": "1.4.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": "^9.0.5",
"@types/jsrsasign": "^10.5.12",
"@types/node": "^20.11.5",
"@types/node-fetch": "^2.6.3",
"base64url": "^3.0.1",
"jsonwebtoken": "^9.0.2",
"jsrsasign": "^11.0.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.26.4",
"typescript": "^5.3.3"
},
"resolutions": {
"@babel/traverse": "^7.23.6",
"semver": "^6.3.1"
},
"scripts": {
"build": "tsc -p .",
"test": "jest",
"build-docs": "typedoc index.ts"
},
"files": [
"dist"
]
}