-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.13 KB
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
{
"name": "pastry-cli",
"version": "1.4.0",
"description": "Node CLI for effectively pasting template files/directories",
"main": "dist/index.js",
"bin": {
"pastry": "dist/index.js",
"pastry-cli": "dist/index.js"
},
"scripts": {
"start": "ts-node src",
"build": "npx tsc",
"deploy": "npm run build && npm publish",
"link": "npm run build && npm link"
},
"homepage": "https://github.com/Saschamz/pastry-cli",
"author": "Sascha Ringström",
"repository": {
"type": "git",
"url": "git@github.com:Saschamz/pastry-cli.git"
},
"keywords": [
"cli",
"template",
"blueprint",
"paste",
"pastry",
"reuse"
],
"license": "ISC",
"dependencies": {
"arg": "^4.1.0",
"chalk": "^2.4.2",
"esm": "^3.2.25",
"find-in-files": "^0.5.0",
"find-up": "^5.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"inquirer": "^6.3.1",
"inquirer-fuzzy-path": "^2.0.3",
"ncp": "^2.0.0",
"replace-in-file": "^4.1.0"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^12.6.9",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}