-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "drails",
"description": "cli for docker compose and rails users",
"version": "1.0.1",
"author": "Alejandro Alvarez @alejoreact",
"bin": {
"drails": "./bin/run"
},
"bugs": "https://github.com/alejoreact/drails/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"shelljs": "^0.8.3",
"tslib": "^1"
},
"devDependencies": {
"@types/node": "^10",
"@types/shelljs": "^0.8.3",
"ts-node": "^8",
"tslint": "^5",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/alejoreact/drails",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "drails"
},
"repository": "alejoreact/drails",
"scripts": {
"posttest": "tslint -p . -t stylish",
"prepack": "rm -rf lib && tsc -b",
"test": "echo NO TESTS"
},
"types": "lib/index.d.ts",
"private": false
}