-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
{
"author": "Valentin Vignal",
"bugs": {
"url": "https://github.com/ValentinVignal/action-dart-analyze/issues"
},
"dependencies": {
"dart-analyze": "^0.5.1"
},
"description": "",
"devDependencies": {
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.17.0",
"jest": "^28.1.1",
"prettier": "^3.6.2",
"ts-jest": "^28.0.4",
"typescript": "^4.2.3"
},
"homepage": "https://github.com/ValentinVignal/action-dart-analyze#readme",
"keywords": [
"actions",
"dart",
"analyze"
],
"license": "ISC",
"main": "index.js",
"name": "action-dart-analyze",
"repository": {
"type": "git",
"url": "git+https://github.com/ValentinVignal/action-dart-analyze.git"
},
"scripts": {
"build": "ncc build src/main.ts --license licenses.txt",
"check-format": "prettier --check .",
"ci": "npm run check-format && npm run test",
"format": "prettier --write .",
"test": "jest --passWithNoTests"
},
"version": "1.1.0"
}