-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "@euricom/pelckmans-cli",
"description": "Pelckmans CLI for generating static websites",
"version": "0.0.7",
"author": "Euricom",
"main": "bin/index.js",
"bin": {
"pelckmans-cli": "bin/index.js"
},
"bugs": "https://github.com/Euricom/pelckmans-cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"@types/nodegit": "^0.27.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"cli-ux": "^5.6.5",
"inquirer": "^8.2.0",
"nodegit": "^0.27.0",
"tslib": "^1"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"chai": "^4",
"eslint": "^5.13",
"eslint-config-google": "latest",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"jest": "^27.3.1",
"ts-node": "^8",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/styles"
],
"homepage": "https://github.com/Euricom/pelckmans-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"oclif": {
"bin": "pelckmans-cli"
},
"repository": "Euricom/pelckmans-cli",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc.json",
"prepack": "rm -rf bin && tsc",
"test": "jest --passWithNoTests",
"version": "oclif-dev readme && git add README.md",
"build": "tsc"
}
}