-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "dotenv-types",
"version": "1.0.0",
"description": "A CLI for create your .env typings!",
"main": "./dist/index.js",
"files": ["dist/**/*"],
"bin": {
"dotenv-types": "./dist/index.js"
},
"scripts": {
"build": "npx tsc",
"test": "npx jest",
"prepare": "npm run build && npm run test"
},
"keywords": [
"CLI",
"types",
"dotenv",
".env"
],
"author": "Teodoro Villanueva",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"@types/prettier": "^2.0.1",
"@types/rimraf": "^3.0.0",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"dependencies": {
"chalk": "^4.0.0",
"commander": "^5.1.0",
"dotenv": "^8.2.0",
"pjson": "^1.0.9",
"prettier": "^2.0.5"
},
"homepage": "https://github.com/teovillanueva/dotenv-types",
"repository": {
"type": "git",
"url": "git+https://github.com/teovillanueva/dotenv-types.git"
},
"bugs": {
"url": "https://github.com/teovillanueva/dotenv-types/issues"
}
}