-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.07 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
{
"name": "clever-compose",
"version": "1.0.1",
"description": "Simple CLI used to create docker-compose files for your project based on user created templates.",
"main": "build/src/app.js",
"bin": {
"clever-compose": "build/src/app.js"
},
"files": [
"build/"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"build:watch": "nodemon --watch \"src/**\" --ext \"ts\" --exec \"tsc\"",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:watch": "nodemon --watch \"src/**\" --ext \"ts\" --exec \"npm run lint\"",
"fix": "eslint --fix src/",
"dev": "ts-node \"src/app.ts\"",
"dev:watch": "nodemon",
"test": "npm run test:unit",
"test:unit": "npx mocha -r ts-node/register \"src/**/*.test.ts\"",
"test:watch": "nodemon --watch \"src/**\" --ext \"ts\" --exec \"npm run test:unit\""
},
"keywords": [
"cli",
"docker-compose",
"clever-compose",
"template"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tabascorp/clever-compose.git"
},
"author": "tabascorp",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tabascorp/clever-compose/issues"
},
"homepage": "https://github.com/tabascorp/clever-compose#readme",
"dependencies": {
"@types/inquirer": "^7.3.1",
"commander": "^6.2.1",
"inquirer": "^7.3.3",
"js-yaml": "^3.14.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.1",
"@tsconfig/recommended": "^1.0.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"chai": "^4.2.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"mock-fs": "^4.13.0",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}