UNPKG

2.15 kBJSONView Raw
1{
2 "name": "cxa-track",
3 "version": "1.1.1",
4 "description": "Convenient CLI to quickly update CxA tracked links",
5 "preferGlobal": true,
6 "repository": "sinedied/cxa-track",
7 "homepage": "https://github.com/sinedied/cxa-track",
8 "bugs": {
9 "url": "https://github.com/sinedied/cxa-track/issues"
10 },
11 "keywords": [
12 "cli",
13 "cxa",
14 "advocate",
15 "microsoft",
16 "links"
17 ],
18 "main": "cli.js",
19 "bin": {
20 "cxa": "./bin/cxa.js"
21 },
22 "scripts": {
23 "commit": "git-cz",
24 "lint": "xo",
25 "lint:fix": "xo --fix",
26 "test": "xo && jest --verbose",
27 "test:watch": "jest --watch",
28 "release:check": "npm run release -s -- --dry-run"
29 },
30 "author": {
31 "name": "Yohan Lasorsa",
32 "url": "https://twitter.com/sinedied"
33 },
34 "license": "MIT",
35 "dependencies": {
36 "chalk": "^4.1.0",
37 "clipboardy": "^2.3.0",
38 "conf": "^7.1.2",
39 "gray-matter": "^4.0.2",
40 "minimist": "^1.2.5"
41 },
42 "devDependencies": {
43 "@commitlint/cli": "^11.0.0",
44 "@commitlint/config-conventional": "^11.0.0",
45 "commitizen": "^4.2.2",
46 "cz-conventional-changelog": "^3.3.0",
47 "husky": "^4.3.7",
48 "jest": "^26.6.3",
49 "lint-staged": "^10.5.3",
50 "semantic-release": "^17.3.1",
51 "semantic-release-npm-github": "^1.0.2",
52 "xo": "^0.37.1"
53 },
54 "engines": {
55 "node": ">=12.0.0"
56 },
57 "xo": {
58 "space": true,
59 "prettier": true,
60 "envs": [
61 "node",
62 "jest"
63 ]
64 },
65 "jest": {
66 "setupFilesAfterEnv": [
67 "<rootDir>/test/jest.setup.js"
68 ],
69 "collectCoverageFrom": [
70 "*.js",
71 "lib/**/*.js"
72 ],
73 "silent": true
74 },
75 "commitlint": {
76 "extends": [
77 "@commitlint/config-conventional"
78 ]
79 },
80 "lint-staged": {
81 "*.js": [
82 "xo --fix",
83 "git add"
84 ]
85 },
86 "release": {
87 "extends": "semantic-release-npm-github",
88 "branches": "main"
89 },
90 "husky": {
91 "hooks": {
92 "precommit": "lint-staged",
93 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
94 }
95 },
96 "config": {
97 "commitizen": {
98 "path": "cz-conventional-changelog"
99 }
100 },
101 "files": [
102 "index.js",
103 "lib/*.js",
104 "bin/cxa.js"
105 ]
106}