-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "github-javascript-action",
"version": "2.0.0",
"description": "GitHub JavaScript Action Template",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"bin": "src/cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gayanvoice/javascript-github-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "Gayan Kuruppu",
"license": "MIT",
"bugs": {
"url": "https://github.com/gayanvoice/javascript-github-action/issues"
},
"homepage": "https://github.com/gayanvoice/javascript-github-action#readme",
"dependencies": {
"@actions/core": "1.2.5",
"chart.js": "2.9.3",
"chartjs-node-canvas": "3.0.8",
"fs-extra": "9.1.0",
"simple-git": "2.39.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"eslint": "^7.4.0",
"jest": "^26.6.3"
}
}