generated from futureware-tech/template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "simulator-action",
"version": "0.0.0",
"private": true,
"description": "Launch an iOS Simulator (and shut it down once the job completes)",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"print-devices": "node lib/print-devices.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/futureware-tech/simulator-action.git"
},
"keywords": [
"actions",
"simulator",
"ios",
"flutter"
],
"author": "FutureWare LLC (https://futureware.dev)",
"license": "MIT",
"dependencies": {
"@actions/core": ">=1.11.1",
"@types/semver": ">=7.5.0",
"boolean": ">=3.2.0",
"semver": ">=7.5.0"
},
"devDependencies": {
"@types/jest": ">=29.5.11",
"@types/node": ">=22.10.2",
"@typescript-eslint/parser": ">=6.19.0",
"@vercel/ncc": ">=0.36.1",
"eslint": ">=8.56.0",
"eslint-plugin-github": ">=5.0.2",
"eslint-plugin-jest": ">=27.6.3",
"jest": ">=26.6.3",
"jest-circus": ">=27.4.6",
"js-yaml": ">=4.1.0",
"prettier": ">=3.3.3",
"ts-jest": ">=29.2.5",
"typescript": ">=5.7.2"
}
}