-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "atlasci-action",
"version": "0.1.1",
"description": "atlasci github action",
"main": "lib/src/main.js",
"scripts": {
"format": "prettier --write shim/*.js",
"format-check": "prettier --check shim/*.js",
"lint": "eslint shim/*.js",
"shim": "ncc build shim -o shim/dist",
"all": "npm run format && npm run lint && npm run shim"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ariga/ariga.git"
},
"keywords": [
"atlas",
"atlasci",
"github",
"action"
],
"author": "ariga",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ariga/ariga/issues"
},
"homepage": "https://github.com/ariga/ariga#readme",
"devDependencies": {
"@vercel/ncc": "0.38.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.6.2"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/tool-cache": "^1.7.2",
"@octokit/rest": "^19.0.4"
}
}