generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 941 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": "submit-for-testflight-review",
"version": "1.0.2",
"private": true,
"description": "Submit an iOS app build for TestFlight review.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"test": "tsc && jest -- main.test.ts",
"all": "npm run build && npm run package && jest -- integration.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"axios": "^1.7.7",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.7",
"@vercel/ncc": "^0.38.2",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}