-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.63 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
{
"name": "configure-env",
"version": "2.0.0-1",
"description": "Configures your project's environment by creating a .env file.",
"main": "dist/index.js",
"bin": {
"configure-env": "./bin/configure-env.js"
},
"scripts": {
"clean": "rimraf dist/",
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"cm": "git-cz",
"prepack": "run-s clean build",
"release": "standard-version"
},
"keywords": [
"dotenv",
"setup",
"configuration",
"env",
"environment"
],
"author": "Dominik Kundel <[email protected]> (https://twilio.com/labs)",
"license": "MIT",
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/google-libphonenumber": "^7.4.19",
"@types/jest": "^24.0.23",
"@types/mock-fs": "^4.10.0",
"@types/prompts": "^2.0.3",
"@types/yargs": "^13.0.3",
"common-tags": "^1.8.0",
"cz-conventional-changelog": "^3.0.2",
"debug": "^4.1.1",
"eslint": "^6.6.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"mock-fs": "^4.10.3",
"normalize-newline": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"standard-version": "^8.0.1",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"dependencies": {
"@types/node": "^14.0.13",
"email-regex": "^4.0.0",
"google-libphonenumber": "^3.2.10",
"log-symbols": "^3.0.0",
"prompts": "^2.3.2",
"yargs": "^15.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"bin/",
"dist/!(__tests__)",
"README.md",
"LICENSE"
]
}