-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.06 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@optro/create-trello-powerup",
"description": "Easily create Trello Power-Ups from the Command Line",
"version": "1.0.12",
"author": "Optro",
"website": "https://www.optro.cloud",
"bin": {
"create-trello-powerup": "./bin/run"
},
"bugs": "https://github.com/optro-cloud/create-trello-powerup/issues",
"dependencies": {
"@oclif/command": "^1.8.4",
"@oclif/config": "^1.17.1",
"@oclif/plugin-help": "^5.1.3",
"camelcase": "^6.2.1",
"filenamify": "^4.3.0",
"inquirer": "^8.2.0",
"replace-in-file": "^6.3.2",
"shelljs": "^0.8.4",
"tslib": "^2.2.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.3",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.2.18",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^8.1.3",
"@types/mocha": "^9.0.0",
"@types/node": "^10.17.54",
"@types/shelljs": "^0.8.8",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^3.1.2",
"eslint-config-oclif-typescript": "^0.2.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/templates"
],
"homepage": "https://github.com/optro-cloud/create-trello-powerup",
"keywords": [
"oclif",
"Trello",
"Trello-powerup",
"Trello-cards",
"React-component",
"Cli",
"React",
"Typescript",
"Node-trello",
"Trello-actions",
"Trello-api",
"Trello-typescript",
"React-trello",
"Nodejs",
"Board"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "create-trello-powerup"
},
"repository": {
"type": "git",
"url": "https://github.com/optro-cloud/create-trello-powerup.git"
},
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"build": "tsc",
"prepack": "rimraf lib && tsc -b && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}