1 | {
|
2 | "name": "cac",
|
3 | "version": "6.5.13",
|
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": "dist/index.d.ts",
|
11 | "files": [
|
12 | "dist",
|
13 | "!**/__test__/**",
|
14 | "/mod.js",
|
15 | "/mod.d.ts"
|
16 | ],
|
17 | "scripts": {
|
18 | "test": "jest",
|
19 | "test:cov": "jest --coverage",
|
20 | "build": "rollup -c",
|
21 | "toc": "markdown-toc -i README.md",
|
22 | "prepublishOnly": "npm run build",
|
23 | "docs:api": "typedoc --out api-doc --readme none --exclude \"**/__test__/**\" --theme minimal"
|
24 | },
|
25 | "author": "egoist <0x142857@gmail.com>",
|
26 | "license": "MIT",
|
27 | "devDependencies": {
|
28 | "@rollup/plugin-commonjs": "^11.1.0",
|
29 | "@rollup/plugin-node-resolve": "^7.1.3",
|
30 | "@types/execa": "^0.9.0",
|
31 | "@types/jest": "^23.3.9",
|
32 | "@types/mri": "^1.1.0",
|
33 | "cz-conventional-changelog": "^2.1.0",
|
34 | "eslint-config-rem": "^3.0.0",
|
35 | "events": "^3.0.0",
|
36 | "execa": "^1.0.0",
|
37 | "husky": "^1.2.0",
|
38 | "jest": "^24.9.0",
|
39 | "lint-staged": "^8.1.0",
|
40 | "markdown-toc": "^1.2.0",
|
41 | "mri": "^1.1.1",
|
42 | "prettier": "^1.15.2",
|
43 | "rollup": "^2.10.0",
|
44 | "rollup-plugin-dts": "^1.4.3",
|
45 | "rollup-plugin-esbuild": "^1.4.1",
|
46 | "semantic-release": "^15.12.1",
|
47 | "ts-jest": "^23.10.5",
|
48 | "ts-node": "^7.0.1",
|
49 | "typedoc": "^0.17.6",
|
50 | "typescript": "^3.9.2"
|
51 | },
|
52 | "engines": {
|
53 | "node": ">=8"
|
54 | },
|
55 | "release": {
|
56 | "branch": "master"
|
57 | },
|
58 | "config": {
|
59 | "commitizen": {
|
60 | "path": "./node_modules/cz-conventional-changelog"
|
61 | }
|
62 | },
|
63 | "lint-staged": {
|
64 | "linters": {
|
65 | "*.{js,json,ts}": [
|
66 | "prettier --write",
|
67 | "git add"
|
68 | ],
|
69 | "*.md": [
|
70 | "markdown-toc -i",
|
71 | "prettier --write",
|
72 | "git add"
|
73 | ]
|
74 | },
|
75 | "ignore": [
|
76 | "dist/**",
|
77 | "mod.js"
|
78 | ]
|
79 | },
|
80 | "husky": {
|
81 | "hooks": {
|
82 | "pre-commit": "npm t && lint-staged"
|
83 | }
|
84 | }
|
85 | }
|