-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.29 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.29 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@borderless/gh-deploy",
"version": "1.0.0",
"description": "Tiny GitHub deployment CLI",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": "dist/bin.js",
"files": [
"dist/"
],
"scripts": {
"prettier": "prettier --write",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --quiet --fix",
"format": "npm run prettier -- \"{,src/**/}*.{js,jsx,ts,tsx,json,css,md,yml,yaml}\"",
"build": "rimraf dist/ && tsc",
"specs": "jest --coverage",
"test": "npm run -s lint && npm run -s build && npm run -s specs",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/borderless/gh-deploy.git"
},
"keywords": [
"cloudflare",
"worker",
"build",
"bundle",
"cli",
"typescript"
],
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/borderless/gh-deploy/issues"
},
"homepage": "https://github.com/borderless/gh-deploy",
"jest": {
"roots": [
"<rootDir>/src/"
],
"transform": {
"\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,yml,yaml}": "npm run prettier"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/bytes": "^3.1.0",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@types/parse-github-url": "^1.0.0",
"@types/webpack": "^4.41.25",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"dependencies": {
"@octokit/request": "^5.4.11",
"arg": "^4.1.3",
"ora": "^5.1.0",
"parse-github-url": "^1.0.2",
"simple-git": "^2.24.0"
}
}