-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 975 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 975 Bytes
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
{
"name": "sqldef-preview-action",
"version": "1.0.0",
"description": "GitHub Action to preview schema changes using sqldef",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "echo TODO",
"package": "ncc build build/main.js -o dist --source-map --license licenses.txt",
"test": "echo TODO",
"all": "npm run build && npm run format && npm run lint && npm run package"
},
"keywords": [
"actions",
"sqldef",
"database",
"schema"
],
"author": "sqldef team",
"license": "MIT",
"dependencies": {
"@actions/core": "latest",
"@actions/exec": "latest",
"@actions/github": "latest",
"@actions/io": "latest",
"@actions/tool-cache": "latest"
},
"devDependencies": {
"@types/node": "latest",
"@vercel/ncc": "latest",
"prettier": "latest",
"typescript": "latest"
}
}