-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 3.05 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "fbl",
"version": "1.15.1",
"description": "CLI tool to manage routine automation tasks.",
"keywords": [
"fireblink",
"fbl",
"automation",
"automations",
"cli",
"flows",
"flow",
"deployments",
"deployment",
"routine"
],
"engines": {
"node": ">=12.18.0"
},
"main": "dist/index.js",
"scripts": {
"commit": "npx git-cz",
"start": "node dist/src/cli.js",
"test": "rimraf ./coverage/ && nyc --reporter=html --reporter=text cross-env FBL_ENV=test mocha",
"build": "rimraf ./dist/ && tsc",
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts index.ts",
"prettify": "prettier src/**/*.{md,ts,json} test/**/*.{md,ts,json} index.{md,ts,json} --write --config .prettierrc.yml && tslint 'src/**/*.ts' 'test/**/*.ts' 'index.ts' --fix",
"snyk-protect": "snyk protect"
},
"bin": {
"fbl": "dist/src/cli.js"
},
"author": "FireBlink LTD",
"license": "MIT",
"dependencies": {
"cliui": "7.0.4",
"colors": "1.4.0",
"command-exists": "1.2.9",
"commander": "7.2.0",
"deep-object-diff": "1.1.0",
"ejs": "3.1.6",
"ejs-lint": "1.2.0",
"glob-promise": "4.2.0",
"got": "11.8.2",
"humanize-duration": "3.27.0",
"joi": "17.4.0",
"js-yaml": "4.1.0",
"jsonschema": "1.4.0",
"object-collider": "1.0.4",
"prompts": "2.4.1",
"requireg": "0.2.2",
"semver": "7.3.5",
"table": "6.7.1",
"tar": "6.1.0",
"tmp-promise": "3.0.2",
"uuid": "8.3.2"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@types/chai": "4.2.18",
"@types/ejs": "3.0.6",
"@types/js-yaml": "4.0.1",
"@types/node": "15.12.2",
"@types/semver": "7.3.6",
"@types/table": "6.3.2",
"@types/tar": "4.0.4",
"@types/tmp": "0.2.0",
"@types/uuid": "^8.3.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"commitizen": "4.2.4",
"conventional-changelog-cli": "2.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"husky": "6.0.0",
"jsonlint": "1.6.3",
"lint-staged": "11.0.0",
"mocha": "9.0.0",
"mocha-typescript": "1.1.17",
"mochawesome": "6.2.2",
"nyc": "15.1.0",
"prettier": "2.3.1",
"rimraf": "3.0.2",
"snyk": "^1.630.0",
"source-map-support": "0.5.19",
"ts-node": "10.0.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.3.2"
},
"nyc": {
"cache": false,
"extension": [
".ts"
],
"exclude": [
"src/**/index.ts",
"src/interfaces/*.ts",
"**/*.d.ts",
"coverage/**"
],
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src",
"dist/src"
]
},
"contributors": [
{
"name": "Vladyslav Tkachenko",
"email": "vlad@fireblink.com"
}
],
"repository": {
"type": "git",
"url": "git+/~https://github.com/FireBlinkLTD/fbl.git"
},
"homepage": "https://fbl.fireblink.com",
"snyk": true
}