-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
54 lines (54 loc) · 1.53 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
51
52
53
54
{
"name": "cross-platform-action",
"version": "0.0.1",
"private": true,
"description": "Cross platform GitHub action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "npm run package:main && npm run package:post",
"package:main": "ncc build --source-map --license licenses.txt",
"package:post": "cp post/main.mjs dist/post.mjs",
"test": "jasmine",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cross-platform-actions/action.git"
},
"keywords": [
"actions",
"cross",
"platfrom",
"cross platfrom",
"cross-platform"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/tool-cache": "^1.6.0",
"array.prototype.flatmap": "^1.2.4"
},
"devDependencies": {
"@types/array.prototype.flatmap": "^1.2.2",
"@types/jasmine": "^4.3.1",
"@types/node": "^14.14.9",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.23.1",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-jasmine": "^4.1.3",
"http-server": "^14.1.0",
"jasmine": "^4.5.0",
"jasmine-ts": "^0.4.0",
"js-yaml": "^3.14.0",
"prettier": "2.4.1",
"typescript": "^4.4.3"
}
}