-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.67 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
{
"name": "@alexletu/cli-commit",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"check-coverage": "nyc check-coverage --statements 80 --branches 80 --functions 80 --lines 80 ",
"commit": "cz",
"build": "esbuild ./src/**/*.{js,ts} --outdir=dist --format=cjs --platform=node",
"build:watch": "esbuild --watch ./src --outdir=dist --format=cjs --platform=node",
"report-coverage": "nyc report --reporter=lcov | codecov",
"write-coverage": "nyc report --reporter=lcov --reporter=cobertura --reporter=html",
"start": "yarn test:watch",
"test-actual": "mocha --reporter=mocha-multi-reporters --reporter-options configFile=./test/mochareporters.json test/tests/index.js",
"test": "nyc --require esbuild-register yarn test-actual",
"test:watch": "nodemon -q --ignore test/.tmp/ --ignore test/artifacts/ --ignore coverage/ --exec \"yarn test\" --",
"ts": "node -r esbuild-register"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
},
"bin": {
"cz": "./bin/git-cz"
},
"repository": "https://github.com/alexletu/cli-commit",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"axios": "0.21.1",
"chai": "4.1.2",
"codecov": "3.8.3",
"esbuild": "^0.13.6",
"esbuild-register": "^3.0.0",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-plugin-arca": "^0.11.1",
"eslint-plugin-import": "^2.25.2",
"in-publish": "2.0.0",
"mocha": "9.0.3",
"mocha-junit-reporter": "1.18.0",
"mocha-multi-reporters": "1.1.7",
"nodemon": "2.0.12",
"nyc": "15.1.0",
"proxyquire": "2.1.0",
"semver": "6.3.0",
"sinon": "6.3.4",
"typescript": "^4.4.4",
"uuid": "3.4.0"
},
"dependencies": {
"cachedir": "2.2.0",
"cli-truncate": "^1.0.0",
"dedent": "0.7.0",
"detect-indent": "6.0.0",
"find-node-modules": "^2.1.2",
"find-root": "1.1.0",
"find-up": "^5.0.0",
"fs-extra": "8.1.0",
"fuse.js": "^3.4.5",
"glob": "7.1.4",
"homedir": "^0.6.0",
"inquirer": "6.5.2",
"inquirer-autocomplete-prompt": "^0.12.0",
"inquirer-maxlength-input-prompt": "^1.0.1",
"is-utf8": "^0.2.1",
"lodash": "4.17.21",
"minimist": "1.2.5",
"pad": "^2.3.0",
"read-pkg-up": "^7.0.1",
"strip-bom": "4.0.0",
"strip-json-comments": "3.0.1",
"wrap-ansi": "^3.0.0"
},
"nyc": {
"exclude": [
"src/cli",
"test"
]
},
"engineStrict": true,
"engines": {
"node": ">= 14"
},
"packageManager": "[email protected]"
}