-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.15 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
{
"name": "unexample",
"version": "1.0.0",
"description": "convert .env.example to .env (and some)",
"keywords": [
"dotenv",
"env",
"env-example",
"unexample"
],
"homepage": "https://github.com/rootindex/unexample#readme",
"bugs": {
"url": "https://github.com/rootindex/unexample/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/rootindex/unexample.git"
},
"license": "MIT",
"author": {
"name": "Francois Raubenheimer",
"email": "rootindex@gmail.com",
"url": "https://github.com/rootindex"
},
"main": "bin/unexample.js",
"bin": {
"unexample": "bin/unexample.js"
},
"scripts": {
"build": "npx tsc --build ./tsconfig.json"
},
"dependencies": {
"meow": "^5.0.0",
"minimist": "^1.2.0",
"minimist-options": "^4.0.1",
"underscore": "^1.9.1"
},
"devDependencies": {
"@types/meow": "^5.0.0",
"@types/minimist": "^1.2.0",
"@types/node": "^11.11.3",
"@types/underscore": "^1.8.13",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
},
"bundleDependencies": [
"meow",
"minimist",
"minimist-options",
"underscore"
]
}