-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.23 KB
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
{
"name": "flattern-markdown-folder-structure-action",
"description": "GitHub action to flatten file structure with markdown data",
"main": "src/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git@github.com:impresscms-dev/flattern-markdown-folder-structure-action.git"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format": "prettier --write **/*.js tests/**/*.js",
"format-check": "prettier --check **/*.js tests/**/*.js",
"lint": "eslint --no-warn-ignored 'src/**/*.js' 'tests/**/*.js'",
"pack": "ncc build src/index.js --minify",
"all": "npm install && npm run format && npm run lint && npm run pack",
"fast-all": "npm install && npm run pack"
},
"keywords": [
"github actions",
"markdown",
"flattern",
"files",
"directories",
"folders"
],
"author": "Raimondas Rimkevičius (aka MekDrop)",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.0",
"eslint": "^10.1.0",
"eslint-plugin-jest": "^29.0.1",
"jest": "^30.0.3",
"memfs": "^4.2.0",
"prettier": "^3.0.0",
"semver": "^7.3.8"
}
}