forked from flarum/action-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "@flarum/action-build",
"version": "0.0.0",
"private": true,
"description": "A GitHub Action to automatically compile your Flarum extension's Javascript code, and push it to your GitHub repository.",
"prettier": "@flarum/prettier-config",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn run build && yarn run format && yarn run lint && yarn run package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flarum/action-build.git"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"@npmcli/promise-spawn": "^3.0.0",
"fs-jetpack": "^4.3.1",
"simple-git": "^3.10.0"
},
"devDependencies": {
"@flarum/prettier-config": "^1.0.0",
"@types/node": "^16.11.27",
"@types/npm": "^7.19.0",
"@typescript-eslint/parser": "^5.20.0",
"@vercel/ncc": "^0.33.4",
"eslint": "^8.13.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.1.4",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"packageManager": "yarn@3.2.0"
}