-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 841 Bytes
/
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
{
"name": "deploy-github-pages",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/index.ts -o lib"
},
"author": "wu-yu-xuan",
"license": "WTFPL",
"typings": "index.d.ts",
"devDependencies": {
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"@zeit/ncc": "^0.21.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-babel": "^5.3.0",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"semi": true,
"jsxSingleQuote": false
},
"dependencies": {
"@actions/core": "^1.2.2",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.0",
"@actions/io": "^1.0.2"
}
}