UNPKG

2.93 kBJSONView Raw
1{
2 "name": "@d-cat/tag-cli",
3 "version": "2.9.1",
4 "description": "Tag CLI to deploy and built Tag Managers and Tag boilerplates.",
5 "main": "./lib/index.js",
6 "scripts": {
7 "check_types": "tsc",
8 "coverage": "nyc npm run test && npm run build",
9 "precommit": "pretty-quick --staged && lint-staged",
10 "test": "cross-env TS_NODE_FILES=true mocha --exit --require ts-node/register --colors --opts ./mocha.opts",
11 "prod": "tsc -d",
12 "build": "tsc",
13 "release": "standard-version"
14 },
15 "bin": {
16 "tag-cli": "./lib/index.js"
17 },
18 "files": [
19 "/lib",
20 "/assets"
21 ],
22 "repository": {
23 "type": "git",
24 "url": "git@gitlab.com:d-cat/templates/ci-cd/tag-cli.git"
25 },
26 "engines": {
27 "node": ">=10.15.1"
28 },
29 "keywords": [
30 "vodafoneziggo",
31 "d-cat",
32 "tag manager"
33 ],
34 "lint-staged": {
35 "*.{ts,tsx}": [
36 "prettier --write",
37 "git add"
38 ]
39 },
40 "author": "Robert-Jan Kuyper",
41 "license": "ISC",
42 "devDependencies": {
43 "@commitlint/cli": "^8.1.0",
44 "@commitlint/config-conventional": "^8.1.0",
45 "@types/adm-zip": "~0.4.32",
46 "@types/app-root-path": "~1.2.4",
47 "@types/chai": "~4.2.4",
48 "@types/chalk": "~2.2.0",
49 "@types/figlet": "~1.2.0",
50 "@types/inquirer": "~6.5.0",
51 "@types/listr": "~0.14.2",
52 "@types/mocha": "~5.2.7",
53 "@types/mock-fs": "~4.10.0",
54 "@types/node-fetch": "~2.5.2",
55 "@types/nodemailer": "~6.2.2",
56 "@types/request": "~2.48.3",
57 "@types/request-promise": "~4.1.44",
58 "@types/sinon": "~7.5.0",
59 "@types/sinon-chai": "~3.2.3",
60 "@types/uglify-js": "^3.9.1",
61 "@types/uuid": "~3.4.5",
62 "@types/yargs": "~13.0.2",
63 "chai": "^4.2.0",
64 "codecov": "~3.5.0",
65 "cross-env": "^6.0.3",
66 "cz-conventional-changelog": "^3.0.2",
67 "debug": "^4.1.1",
68 "husky": "^3.0.8",
69 "lint-staged": "^9.2.5",
70 "mocha": "~6.2.2",
71 "mock-fs": "^4.10.4",
72 "nock": "^11.7.0",
73 "nyc": "14.1.1",
74 "prettier": "^1.18.2",
75 "pretty-quick": "^1.11.1",
76 "sinon": "~7.5.0",
77 "sinon-chai": "~3.4.0",
78 "standard-version": "^7.0.0",
79 "ts-node": "8.5.4",
80 "tslint": "^5.20.0",
81 "tslint-config-airbnb": "^5.11.1",
82 "tslint-config-prettier": "^1.18.0",
83 "tslint-plugin-prettier": "^2.0.1",
84 "typescript": "3.7.4",
85 "typescript-tslint-plugin": "^0.5.4"
86 },
87 "dependencies": {
88 "@google-cloud/storage": "^3.3.1",
89 "adm-zip": "^0.4.13",
90 "app-root-path": "^2.2.1",
91 "chalk": "^2.4.2",
92 "dotenv": "^8.2.0",
93 "figlet": "^1.2.4",
94 "googleapis": "^51.0.0",
95 "inquirer": "^7.0.0",
96 "listr": "^0.14.3",
97 "listr-verbose-renderer": "^0.5.0",
98 "node-fetch": "^2.6.0",
99 "nodemailer": "^6.3.1",
100 "request": "^2.88.0",
101 "request-promise": "^4.2.4",
102 "uglify-js": "^3.9.3",
103 "uuid": "^3.3.3",
104 "yargs": "^14.0.0"
105 },
106 "config": {
107 "commitizen": {
108 "path": "./node_modules/cz-conventional-changelog"
109 }
110 }
111}