-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
{
"name": "envprompter",
"version": "0.0.2",
"main": "index.js",
"repository": "git@github.com:OfekShimko/EnvPrompter.git",
"url": "git+https://github.com/OfekShimko/EnvPrompter.git",
"author": "oshimko <ofekshimko@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.4",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^7.5.0",
"chai": "^5.1.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.4.0",
"ts-node": "^10.9.2",
"typescript": "*"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "mocha",
"lint": "eslint ./src/**/**/*.ts",
"lint:fix": "eslint ./src/**/**/*.ts --fix",
"publish": "bash ./publish"
},
"dependencies": {
"enquirer": "^2.4.1"
},
"bin": {
"envprompter": "./dist/index.js"
},
"files": [
"dist",
"README.md"
]
}