UNPKG

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