-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 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
{
"name": "x0rro",
"version": "1.0.3",
"description": "",
"bin": {
"x0rro": "./bin/run"
},
"engines": {
"node": ">=13.0.0"
},
"files": [
"/bin",
"/lib",
"/scripts",
"/templates",
"/generated",
"/requirements.txt",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/phra/x0rro",
"keywords": [
"oclif"
],
"license": "GPL-2.0-or-later",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "x0rro",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "phra/x0rro",
"scripts": {
"postinstall": "echo Installing Python3 deps && pip3 install -r requirements.txt",
"readme": "oclif-dev readme",
"start": "./bin/run",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc.js",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "jest",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"inquirer": "^7.0.3",
"mustache": "^4.0.0",
"r2pipe-promise": "^1.6.0",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.1.1",
"@types/mustache": "^4.0.0",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}