UNPKG

1.62 kBJSONView Raw
1{
2 "name": "cac",
3 "version": "6.3.10",
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 "dependencies": {},
47 "release": {
48 "branch": "master"
49 },
50 "config": {
51 "commitizen": {
52 "path": "./node_modules/cz-conventional-changelog"
53 }
54 },
55 "lint-staged": {
56 "*.{js,json,ts}": [
57 "prettier --write",
58 "git add"
59 ],
60 "*.md": [
61 "markdown-toc -i",
62 "prettier --write",
63 "git add"
64 ]
65 },
66 "husky": {
67 "hooks": {
68 "pre-commit": "npm t && lint-staged"
69 }
70 }
71}