generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "upload-testflight-action",
"version": "1.0.0",
"private": true,
"description": "A GitHub Action that uploads a app to Apple's TestFlight",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Apple-Actions/upload-testflight-build.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Itty Bitty Apps Pty Ltd",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.4"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/node": "^14.0.25",
"@typescript-eslint/parser": "^3.7.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.5.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^23.18.0",
"jest": "^26.4.0",
"jest-circus": "^26.1.0",
"js-yaml": "^3.14.0",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
}
}