forked from CircleCI-Public/CircleCI-Env-Inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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": "circleci-env-inspector",
"version": "1.0.0",
"description": "",
"main": "./src/index.mts",
"scripts": {
"build": "rimraf ./dist && tsc",
"dev": "ts-node --esm ./src/index.mts",
"format": "prettier --write src/*",
"lint:fix": "eslint src/* --fix",
"lint": "eslint src/*",
"start": "npm run build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^5.2.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"i": "^0.3.7",
"inquirer": "^9.1.4",
"node-fetch": "^3.3.0",
"npm": "^9.2.0",
"ora": "^6.1.2"
},
"type": "module",
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"eslint": "^8.31.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "2.8.2",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}