-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "aws-sso-auth",
"version": "2.9.0",
"description": "",
"bin": "bin.js",
"engines": {
"node": ">=18.16.0 <19",
"npm": ">=9.7.1 <10"
},
"scripts": {
"build": "rm -rf build/ && npm run -- tsc --project ./tsconfig.dist.json --noEmitOnError --outDir ./build && cp package.json package-lock.json README.md ./build/ && (cd ./build && npm ci --only=production)",
"package": "npm run build && rm -rf dist/ && mkdir -p dist && npm run -- pkg ./build --targets=node18-linux-x64,node18-macos-x64,node18-win-x64 --out-path ./dist",
"pkg": "pkg",
"compile": "npm run tsc --noEmitOnError",
"version": "auto-changelog --template ./changelog_template.hbs -p && git add CHANGELOG.md",
"test": "jest",
"eslint": "eslint",
"lint": "eslint '**/*.ts' --fix",
"lint-check": "eslint '**/*.ts' --max-warnings 0",
"tsc": "tsc"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/ini": "^1.3.31",
"@types/jest": "^29.5.3",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.17.5",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"ansi-regex": "^6.0.1",
"auto-changelog": "^2.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"mock-fs": "^5.2.0",
"pkg": "^5.8.1",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"ini": "^4.1.1",
"yargs": "^17.7.2"
}
}