-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.76 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
{
"name": "github-badge-action",
"version": "2.0.0",
"description": "Create a badge using GitHub Actions inputs & outputs, and save it into a file",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"repository": "https://github.com/emibcn/github-badge-action",
"author": "github.com/emibcn",
"license": "GPL-3.0-or-later",
"private": false,
"sideEffects": false,
"keywords": [
"github",
"github action",
"action",
"badge",
"gradient",
"workflow",
"coverage"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle --format modern,cjs",
"start": "microbundle watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:unit": "jest --color --coverage",
"test:build": "run-s build",
"test:lint": "eslint .",
"deploy": "np --color --preview",
"deploy-force": "np --contents --color"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"@actions/core": "^1.10.0",
"gradient-badge": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.0.3",
"cross-env": "^7.0.3",
"eslint": "^7.27.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.0.3",
"microbundle": "^0.15.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
}
}