-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "action-dart-analyze",
"version": "0.17.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "ncc build src/main.ts --license licenses.txt",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ValentinVignal/action-dart-analyze.git"
},
"keywords": [
"actions",
"dart",
"analyze"
],
"author": "Valentin Vignal",
"license": "ISC",
"bugs": {
"url": "https://github.com/ValentinVignal/action-dart-analyze/issues"
},
"homepage": "https://github.com/ValentinVignal/action-dart-analyze#readme",
"devDependencies": {
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vercel/ncc": "^0.27.0",
"eslint": "^8.17.0",
"jest": "^28.1.1",
"ts-jest": "^28.0.4",
"typescript": "^4.2.3"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@types/js-yaml": "^4.0.5",
"@types/minimatch": "^3.0.4",
"js-yaml": "^4.1.0",
"minimatch": "^3.0.4",
"path": "^0.12.7"
}
}