-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.23 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
50
51
52
53
54
55
56
{
"name": "aws-profiles",
"description": "CLI to manage aws-cli profiles",
"version": "1.1.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"package": "yarn build && pkg build/main.js -c=package.json",
"build": "NODE_ENV=production webpack",
"test": "ava",
"release": "sh release.sh"
},
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.4.0",
"ini": "^3.0.1",
"inquirer": "^9.1.2"
},
"devDependencies": {
"@types/ini": "^1.3.31",
"@types/inquirer": "^9.0.1",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.20",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"ava": "^4.3.3",
"eslint": "^8.24.0",
"ts-jest": "^29.0.2",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"pkg": {
"options": [
"experimental-modules"
],
"targets": [
"node16-macos-x64",
"node16-macos-arm64",
"node16-win-x64",
"node16-linux-x64",
"node16-linux-arm64"
],
"outputPath": "package/bin"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}