forked from dangoslen/changelog-enforcer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "javascript-action",
"version": "1.0.0",
"description": "JavaScript Action Template",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest --coverage",
"test:badges": "npm test && make-coverage-badge"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dangoslen/changelog-enforcer.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Changelog"
],
"author": "@dangoslen (from GitHub Actions Template)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dangoslen/changelog-enforcerissues"
},
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/dangoslen/changelog-enforcer#readme",
"dependencies": {
"@actions/core": "^1.1.1",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"dist": "^0.1.2",
"make-coverage-badge": "^1.2.0",
"uglify-js": "^2.6.0"
},
"devDependencies": {
"@vercel/ncc": "^0.23.0",
"eslint": "^6.3.0",
"jest": "^24.9.0"
}
}