-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.15 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "isubo",
"version": "0.0.12-beta.0",
"description": "deploy posts are written in markdown to github issue",
"main": "index.js",
"type": "module",
"bin": {
"isubo": "bin/index.js"
},
"scripts": {
"test": "jest",
"esm-test": "npx jest --clearCache && node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand",
"only-test": "./jest.js",
"update-test-reports": "npm run esm-test && (git add ./reports && git commit -m 'chore: update test reports') || git checkout ./reports",
"build": "node ./scripts/build.js",
"publish": "npm run build && node scripts/npm.publish.js",
"toc-for": "node ./scripts/toc-for.js",
"prepare": "husky install",
"commitlint": "commitlint --edit",
"postversion": "git push && git push origin --tags",
"plato-report": "node scripts/plato.report.js",
"eslint-report": "rm -rf reports/eslint-report.html && npx eslint ./lib ./bin --format=html --output-file=reports/eslint-report.html",
"static-report": "npm run plato-report && npm run eslint-report",
"new-version": "git fetch origin main && git checkout main && git pull origin main && npx isubo-version"
},
"standard-version": {
"scripts": {
"posttag": "npm run postversion"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/isaaxite/deploy-posts-to-github-issue.git"
},
"keywords": [
"markdown",
"deploy",
"issue",
"issue-blog",
"github",
"blog",
"local",
"cli"
],
"owner": "isaacgan",
"author": "isaaxite",
"license": "MIT",
"bugs": {
"url": "https://github.com/isaaxite/deploy-posts-to-github-issue/issues"
},
"homepage": "https://github.com/isaaxite/deploy-posts-to-github-issue#readme",
"dependencies": {
"@isubo-org/init-conf": "0.0.2-beta.0",
"chalk": "^5.2.0",
"clipboardy": "^3.0.0",
"fast-glob": "^3.2.12",
"figlet": "^1.6.0",
"fs-extra": "^11.1.1",
"js-yaml": "^4.1.0",
"markdown-toc": "^1.2.0",
"octokit": "^2.0.19",
"ora": "^6.3.1",
"prompts": "^2.4.2",
"remark-frontmatter": "^4.0.1",
"remark-parse": "^10.0.2",
"remark-stringify": "^10.0.3",
"simple-git": "^3.19.0",
"spinnies": "^0.5.1",
"unified": "^10.1.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-optional-chaining": "^7.22.12",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@babel/plugin-transform-private-property-in-object": "^7.22.11",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@isubo-org/publish": "0.0.2",
"@isubo-org/version": "0.0.2-alpha.6",
"@jest/globals": "^29.5.0",
"@octokit/request": "^8.1.1",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-stats": "^1.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-html-reporter": "^3.10.0",
"msw": "^1.2.3",
"plato": "^1.7.0",
"rollup": "^3.26.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2"
}
}