-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
{
"name": "envchecker-cli",
"version": "1.0.3",
"main": "lib/index.js",
"bin": {
"envchecker": "./bin/index.js"
},
"description": "command-line tool to detect undocumented or scattered environment variables across your project",
"repository": "[email protected]:rodrigo-md/envchecker-cli.git",
"author": "Rodrigo Martinez <[email protected]>",
"license": "MIT",
"keywords": [
"JavaScript",
"TypeScript",
"env",
"environment",
"variables",
"linter",
"checker",
"check",
"devtools"
],
"engines": {
"node": ">=12.10.0"
},
"scripts": {
"build": "npm run clean && tsc --pretty --skipLibCheck --noEmit && webpack",
"test": "npx tap --ts --test-ignore=e2e-tests/.* --no-check-coverage",
"e2e-tests": "npx tap --ts ./e2e-tests --no-check-coverage",
"clean": "npx shx rm -rf bin",
"format": "rome format .",
"commit": "cz",
"release": "npx semantic-release",
"postversion": "yarn build"
},
"dependencies": {
"chalk": "4.1.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.1",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/git": "^10.0.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.242",
"@types/node": "^18.7.13",
"@types/tap": "^15.0.7",
"@types/yargs": "^17.0.11",
"commitizen": "^4.2.5",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "3.3.0",
"rome": "^0.8.0-next.ff4153b",
"semantic-release": "^19.0.5",
"shx": "^0.3.4",
"string-replace-webpack-plugin": "^0.1.3",
"swc-loader": "^0.2.3",
"tap": "^16.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-shebang-plugin": "^1.1.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}