1 | {
|
2 | "name": "cac",
|
3 | "version": "6.3.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 && bili",
|
19 | "toc": "markdown-toc -i README.md",
|
20 | "prepublishOnly": "npm run build",
|
21 | "docs:api": "typedoc --out api-doc --readme none --exclude \"**/__test__/**\" --theme minimal"
|
22 | },
|
23 | "author": "egoist <0x142857@gmail.com>",
|
24 | "license": "MIT",
|
25 | "devDependencies": {
|
26 | "@types/execa": "^0.9.0",
|
27 | "@types/jest": "^23.3.9",
|
28 | "@types/mri": "^1.1.0",
|
29 | "bili": "^3.4.2",
|
30 | "cz-conventional-changelog": "^2.1.0",
|
31 | "eslint-config-rem": "^3.0.0",
|
32 | "execa": "^1.0.0",
|
33 | "husky": "^1.2.0",
|
34 | "jest": "^23.6.0",
|
35 | "lint-staged": "^8.1.0",
|
36 | "markdown-toc": "^1.2.0",
|
37 | "mri": "^1.1.1",
|
38 | "prettier": "^1.15.2",
|
39 | "semantic-release": "^15.12.1",
|
40 | "ts-jest": "^23.10.5",
|
41 | "ts-node": "^7.0.1",
|
42 | "typedoc": "^0.13.0",
|
43 | "typescript": "^3.1.6"
|
44 | },
|
45 | "dependencies": {},
|
46 | "release": {
|
47 | "branch": "master"
|
48 | },
|
49 | "config": {
|
50 | "commitizen": {
|
51 | "path": "./node_modules/cz-conventional-changelog"
|
52 | }
|
53 | },
|
54 | "lint-staged": {
|
55 | "*.{js,json,ts}": [
|
56 | "prettier --write",
|
57 | "git add"
|
58 | ],
|
59 | "*.md": [
|
60 | "markdown-toc -i",
|
61 | "prettier --write",
|
62 | "git add"
|
63 | ]
|
64 | },
|
65 | "husky": {
|
66 | "hooks": {
|
67 | "pre-commit": "npm t && lint-staged"
|
68 | }
|
69 | }
|
70 | }
|