-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "strip-gh-theme-links",
"version": "2.2.2",
"description": "Strip Github dark/light theme image links",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "./index.d.ts",
"bin": "cli.js",
"files": [
"dist/cjs",
"dist/esm",
"index.d.ts"
],
"scripts": {
"lint": "eslint '*.{t,j}s' 'tests/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"prebuild": "run-s lint:fix clean",
"build": "run-p build:cjs build:esm build:action",
"build:action": "ncc build action/index.ts --minify --v8-cache -o dist/action",
"build:cjs": "tsc index.ts --module commonjs --outDir dist/cjs",
"build:esm": "tsc index.ts --module es2020 --outDir dist/esm",
"test": "uvu -r tsm tests",
"clean": "rimraf dist *.tgz",
"prepare": "is-ci || husky install"
},
"license": "BSD-3-Clause",
"author": {
"name": "Álvaro Mondéjar Rubio",
"email": "[email protected]"
},
"contributors": [],
"repository": "https://github.com/mondeja/strip-gh-theme-links-action",
"dependencies": {
"fake-diff": "1.0.0"
},
"devDependencies": {
"@actions/core": "1.6.0",
"@types/fake-diff": "1.0.0",
"@types/glob": "7.2.0",