-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 906 Bytes
/
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": "evardoc",
"version": "0.0.12",
"description": "Document your environment variables with EvarDoc",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"evardoc": "dist/index.js"
},
"files": [
"dist/src/**/*"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"dev": "node --inspect -r ts-node/register src/index.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/devklick/evardoc"
},
"keywords": [
"node",
"environment",
"variables",
"documentation"
],
"author": "devklick <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^17.0.42",
"jest": "^28.1.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"commander": "^9.3.0"
}
}