-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.5 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
{
"name": "release-workflow-play",
"version": "0.0.1",
"description": "Testing some release workflows",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build lib/start.js --source-map --license licenses.txt -o dist/start && ncc build lib/end.js --source-map --license licenses.txt -o dist/end",
"all": "npm ci && npm run build && npm run format-check && npm run lint && npm test && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richteambs/release-workflow-play.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/richteambs/release-workflow-play/issues"
},
"homepage": "https://github.com/richteambs/release-workflow-play#readme",
"devDependencies": {
"@types/node": "^17.0.21",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"keep-a-changelog": "^2.0.1",
"prettier": "2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}