-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 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
47
48
49
50
51
{
"name": "action-push-rss3",
"version": "0.1.0",
"description": "⚙️ A GitHub Action to push a feed item to RSS3 network ",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"test:mocha": "nyc mocha --config .mocharc.json test/*-test.js",
"test": "npm run lint && npm run test:mocha",
"build": "npx @vercel/ncc build src/index.js --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t-900-a/action-push-rss3.git"
},
"keywords": [
"rss3",
"github",
"action",
"workflow"
],
"author": "t-900-a",
"license": "GNU Affero General Public License v3.0",
"bugs": {
"url": "https://github.com/t-900-a/action-push-rss3/issues"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=6.4.1"
},
"homepage": "https://github.com/t-900-a/action-push-rss3#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"axios-debug-log": "^0.8.4",
"rss3": "^0.8.19"
},
"devDependencies": {
"@vercel/ncc": "^0.33.1",
"chai": "^4.3.6",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.5.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"rewiremock": "^3.14.3",
"sinon": "^13.0.0"
}
}