forked from nordcloud/mca-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 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
70
71
{
"name": "mca-cli",
"version": "1.6.5",
"description": "CLI application for MCA team",
"author": "Nordcloud Managed Cloud Applications",
"license": "MIT",
"main": "./dist/bin/mca.js",
"preferGlobal": true,
"bin": {
"mca": "./dist/bin/mca.js"
},
"files": [
"dist/**/*",
"assets/**/*"
],
"scripts": {
"test": "ava --verbose --timeout=2m",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --ext ts --fix",
"start": "tsc -w -p .",
"watch": "tsc -w -p .",
"build": "tsc -p .",
"release": "standard-version",
"prepare": "npm run build"
},
"dependencies": {
"aws-sdk": "^2.1219.0",
"chalk": "^4.0.0",
"diff": "^4.0.2",
"handlebars": "^4.7.6",
"inquirer": "^7.1.0",
"js-yaml": "^3.13.1",
"picomatch": "^2.2.2",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/diff": "^4.0.2",
"@types/inquirer": "^6.5.0",
"@types/js-yaml": "^3.12.2",
"@types/node": "^13.7.0",
"@types/picomatch": "^2.2.1",
"@types/yargs": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"ava": "^3.3.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"standard-version": "^9.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
]
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}