-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2.12 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
{
"name": "github-fe-actions",
"version": "1.0.0",
"description": "GitHub Actions for frontend repositories",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint actions/",
"lint:fix": "eslint actions/ --fix",
"format": "prettier --write \"actions/**/*.js\"",
"format:check": "prettier --check \"actions/**/*.js\"",
"test": "pnpm run test:shared && pnpm run test:release-note && pnpm run test:prod-deployment && pnpm run test:fe-staging",
"test:shared": "cd actions/shared && npm test",
"test:release-note": "cd actions/release-note && npm test",
"test:prod-deployment": "cd actions/prod-deployment-notification && npm test",
"test:fe-staging": "cd actions/fe-staging-notification && npm test",
"test:coverage": "pnpm run test:coverage:shared && pnpm run test:coverage:release-note && pnpm run test:coverage:prod-deployment",
"test:coverage:shared": "cd actions/shared && npm run test:coverage",
"test:coverage:release-note": "cd actions/release-note && npm run test:coverage",
"test:coverage:prod-deployment": "cd actions/prod-deployment-notification && npm run test:coverage",
"build": "pnpm run build:release-note && pnpm run build:prod-deployment && pnpm run build:fe-staging",
"build:release-note": "cd actions/release-note && npm run build",
"build:prod-deployment": "cd actions/prod-deployment-notification && npm run build",
"build:fe-staging": "cd actions/fe-staging-notification && npm run build",
"install:all": "pnpm run install:shared && pnpm run install:release-note && pnpm run install:prod-deployment && pnpm run install:fe-staging",
"install:shared": "cd actions/shared && npm install",
"install:release-note": "cd actions/release-note && npm install",
"install:prod-deployment": "cd actions/prod-deployment-notification && npm install",
"install:fe-staging": "cd actions/fe-staging-notification && npm install",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^9.16.0",
"eslint-plugin-perfectionist": "^4.4.0",
"husky": "^9.1.7",
"prettier": "^3.4.2"
}
}