-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.1 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
{
"name": "d2d",
"author": {
"name": "Jeffrey Spies",
"email": "[email protected]",
"url": "https://jeffspies.com"
},
"version": "0.0.1",
"license": "MIT",
"main": "main.js",
"repository": {
"type": "git",
"url": "git://github.com/jeffspies/d2d.git"
},
"bugs": {
"url": "https://github.com/jeffspies/d2d/issues"
},
"bin": {
"d2d": "./bin/run"
},
"files": [
"/bin",
"/lib/**/*.js"
],
"keywords": [
"d2d",
"directory",
"folder",
"template",
"eta",
"env",
".env",
"environment",
"variables",
"config",
"settings"
],
"dependencies": {
"commander": "^8.2.0",
"dotenv": "^10.0.0",
"eta": "^1.12.3",
"klaw": "^4.0.1",
"lodash": "^4.17.21",
"make-dir": "^3.1.0"
},
"devDependencies": {
"@types/klaw": "^3.0.2",
"@types/node": "^16.9.2",
"json": "^11.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"scripts": {
"clean": "rimraf lib example/build/templates",
"build": "tsc",
"cli-dev": "npm run build && node bin/cli.js",
"start": "node bin/run"
}
}