-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "aws-multi-env",
"version": "2.0.2",
"description": "Rename and remove files to match deployment environment.",
"repository": "https://github.com/DiogoAbu/aws-multi-env.git",
"author": "Diogo de Azevedo Silva <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"aws-multi-env": "dist/index.js"
},
"files": [
"dist",
"scripts/run-postinstall.js"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"eslint": "eslint . --ext .ts,.tsx,.js,.jsx --max-warnings 0 --config ./.eslintrc",
"prettier": "prettier \"**/{*,}.{json,*rc}\" --config ./.prettierrc --check",
"lint": "yarn eslint && yarn prettier",
"lint-fix": "yarn eslint --fix && yarn prettier --write",
"test": "c8 ava",
"test-ci": "c8 --skip-full ava",
"prepare": "husky install",
"postinstall": "node scripts/run-postinstall.js",
"prepack": "yarn build"
},
"lint-staged": {
"{*,}.{j,t}s{,x}": "eslint --config ./.eslintrc --cache --fix",
"{*,}.{json,*rc}": "prettier --config ./.prettierrc --write",
"{*,}.{t}s{,x}": "tsc-files --noEmit"
},
"dependencies": {
"cosmiconfig": "8.0.0",
"fast-glob": "3.2.12",
"figures": "3.2.0",
"signale": "1.4.0",
"yargs": "17.6.2"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@babel/core": "7.20.5",
"@babel/eslint-parser": "7.19.1",
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@saithodev/semantic-release-backmerge": "2.1.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"@types/node": "18.11.10",
"@types/signale": "1.4.4",
"@types/yargs": "17.0.15",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"ava": "^5.1.0",
"babel-eslint": "10.1.0",
"c8": "^7.12.0",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-superop": "1.4.4",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.2",
"lint-staged": "13.0.4",
"patch-package": "6.5.0",
"postinstall-postinstall": "2.1.0",
"prettier": "2.8.0",
"semantic-release": "19.0.5",
"ts-node": "^10.9.1",
"tsc-files": "1.1.3",
"typescript": "4.9.3"
},
"keywords": [
"node",
"typescript",
"cli",
"aws",
"cosmiconfig",
"yargs"
],
"volta": {
"node": "18.12.1"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/*.test.ts"
],
"require": [
"ts-node/register/transpile-only"
],
"timeout": "2m",
"verbose": true
}
}