-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "changelog-parser-action",
"version": "1.0.0",
"description": "Github action that parses changelog",
"repository": {
"type": "git",
"url": "git+https://github.com/coditory/changelog-parser-action.git"
},
"keywords": [
"actions",
"changelog-parser",
"changelog"
],
"author": "coditory",
"license": "MIT",
"bugs": {
"url": "https://github.com/coditory/changelog-parser-action/issues"
},
"homepage": "https://github.com/coditory/changelog-parser-action#readme",
"main": "build/js/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --out build/dist --license licenses.txt",
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "cat ./build/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"ci": "npm run lint && npm run coverage && npm run build && npm run package"
},
"dependencies": {
"@actions/core": "^1.2.6"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"@vercel/ncc": "^0.25.1",
"eslint": "^7.13.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}