-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.83 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": "trello-to-github-board",
"version": "0.1.1",
"description": "Trello To Github Board",
"repository": {
"type": "git",
"url": "https://github.com/KevinGuancheDarias/ts-lollipop.git"
},
"preferGlobal": true,
"bin": {
"trello-to-git-board": "./bin/trello-to-git-board"
},
"scripts": {
"clear-bin": "del-cli bin",
"prepack": "npm run clear-bin && tsc && cp src/trello-to-git-board bin/",
"lint": "tslint \"src/**/*.ts\"",
"dev-parse": "nodemon -e ts --exec \"tsc && node ./bin/trello-to-git-board parse ./examples/input-trello.json -m ./examples/map.json\"",
"dev-parse-create": "nodemon -e ts --exec \"tsc && node ./bin/trello-to-git-board parse ./examples/input-trello.json -m ./examples/map-create.json\"",
"dev-import": "nodemon -e ts --exec \"tsc && node ./bin/trello-to-git-board import ./examples/github-import.json https://github.com/KevinGuancheDarias/test-import/projects/1",
"dev-import-create": "nodemon -e ts --exec \"tsc && node ./bin/trello-to-git-board import ./examples/github-import-create.json https://github.com/KevinGuancheDarias/test-import/projects/2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Kevin Guanche Darias",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^16.25.0",
"colors": "^1.3.3",
"commander": "^2.20.0",
"mz": "^2.7.0",
"ncp": "^2.0.0",
"readline-sync": "^1.4.9",
"recursive-readdir": "^2.2.2"
},
"devDependencies": {
"@types/mz": "0.0.32",
"@types/ncp": "^2.0.1",
"@types/node": "^11.13.6",
"@types/readline-sync": "^1.4.3",
"@types/recursive-readdir": "^2.2.0",
"del-cli": "^1.1.0",
"nodemon": "^1.12.5",
"ts-node": "^6.0.0",
"tslib": "^1.8.1",
"tslint": "^4.5.0",
"tslint-consistent-codestyle": "^1.15.1",
"typescript": "^3.4.4"
}
}