1 | {
|
2 | "name": "cac",
|
3 | "version": "6.2.3",
|
4 | "description": "Simple yet powerful framework for building command-line apps.",
|
5 | "repository": {
|
6 | "url": "egoist/cac",
|
7 | "type": "git"
|
8 | },
|
9 | "main": "dist/index.js",
|
10 | "types": "types/index.d.ts",
|
11 | "files": [
|
12 | "dist",
|
13 | "types",
|
14 | "!**/__test__/**"
|
15 | ],
|
16 | "scripts": {
|
17 | "test": "jest",
|
18 | "build": "tsc",
|
19 | "toc": "markdown-toc -i README.md",
|
20 | "prepublishOnly": "npm run build"
|
21 | },
|
22 | "author": "egoist <0x142857@gmail.com>",
|
23 | "license": "MIT",
|
24 | "devDependencies": {
|
25 | "@types/execa": "^0.9.0",
|
26 | "@types/jest": "^23.3.9",
|
27 | "@types/mri": "^1.1.0",
|
28 | "cz-conventional-changelog": "^2.1.0",
|
29 | "eslint-config-rem": "^3.0.0",
|
30 | "execa": "^1.0.0",
|
31 | "husky": "^1.2.0",
|
32 | "jest": "^23.6.0",
|
33 | "lint-staged": "^8.1.0",
|
34 | "markdown-toc": "^1.2.0",
|
35 | "prettier": "^1.15.2",
|
36 | "semantic-release": "^15.12.1",
|
37 | "ts-jest": "^23.10.5",
|
38 | "ts-node": "^7.0.1",
|
39 | "typescript": "^3.1.6"
|
40 | },
|
41 | "dependencies": {
|
42 | "mri": "^1.1.1"
|
43 | },
|
44 | "release": {
|
45 | "branch": "master"
|
46 | },
|
47 | "config": {
|
48 | "commitizen": {
|
49 | "path": "./node_modules/cz-conventional-changelog"
|
50 | }
|
51 | },
|
52 | "lint-staged": {
|
53 | "*.{js,json,ts}": [
|
54 | "prettier --write",
|
55 | "git add"
|
56 | ],
|
57 | "*.md": [
|
58 | "markdown-toc -i",
|
59 | "prettier --write",
|
60 | "git add"
|
61 | ]
|
62 | },
|
63 | "husky": {
|
64 | "hooks": {
|
65 | "pre-commit": "npm t && lint-staged"
|
66 | }
|
67 | }
|
68 | }
|