forked from gautamkrishnar/blog-post-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.6 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": "blog-post-workflow",
"version": "1.3.7",
"description": "Allows you to show your latest blog posts on your github profile or project readme",
"main": "blog-post-workflow.js",
"scripts": {
"build": "parcel build --no-source-maps --target=node --bundle-node-modules blog-post-workflow.js",
"lint": "jshint --exclude='node_modules/' *.js",
"start-server": "node test/test-server.js",
"local-run-script": "node local-run.js",
"local-run": "start-server-and-test start-server http://localhost:8080 local-run-script",
"test-run": "mocha test.js",
"test": "yarn run lint && start-server-and-test start-server http://localhost:8080 test-run",
"test-run-dist": "DIST=true mocha test.js",
"test-dist": "yarn run lint && start-server-and-test start-server http://localhost:8080 test-run-dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gautamkrishnar/blog-post-workflow.git"
},
"keywords": [
"github",
"workflow",
"blog",
"posts"
],
"author": "Gautam krishna R <[email protected]> (http://www.github.com/gautamkrishnar)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gautamkrishnar/blog-post-workflow/issues"
},
"homepage": "https://github.com/gautamkrishnar/blog-post-workflow#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"dateformat": "^3.0.3",
"process": "latest",
"random-seed": "^0.3.0",
"rss-parser": "^3.9.0"
},
"devDependencies": {
"jshint": "^2.12.0",
"mocha": "^8.1.3",
"parcel-bundler": "^1.12.4",
"start-server-and-test": "^1.11.3"
}
}