-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "onesky-uploader-action",
"version": "0.0.1",
"description": "Github action that uploads a resource file to OneSky",
"keywords": [
"OneSky",
"github action",
"upload"
],
"main": "lib/index.js",
"author": {
"name": "Gonzalo D'Elia",
"email": "gonzalo.n.delia@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/gndelia/onesky-uploader-action"
},
"homepage": "https://github.com/gndelia/onesky-uploader-action",
"bugs": {
"url": "https://github.com/gndelia/onesky-uploader-action/issues"
},
"scripts": {
"build": "ncc build src/index.ts -m -o lib --no-source-map-register",
"format": "prettier --write src/**/*.ts",
"style:check": "prettier --check src/**/*.ts",
"lint": "eslint ./src --fix --ext .ts --max-warnings 0",
"lint:check": "eslint ./src/ --ext .ts --max-warnings 0"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/form-data": "^2.5.0",
"@types/node": "^14.10.1",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
},
"dependencies": {
"@actions/core": "^1.2.6",
"form-data": "^3.0.0",
"node-fetch": "^2.6.1"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.ts": [
"npm run format",
"npm run lint"
]
}
}