forked from bahmutov/manpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.95 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "manpm",
"description": "Shows the relevant part of NPM module's README file right in your terminal",
"main": "./src/index.js",
"version": "0.0.0-semantic-release",
"bin": {
"manpm": "./bin/manpm.js"
},
"scripts": {
"test": "mocha src/*-spec.js",
"pretest": "npm run lint",
"lint": "eslint src/*.js bin/*.js",
"commit": "git-issues && commit-wizard",
"issues": "git-issues",
"pkgfiles": "pkgfiles",
"exact": "exact-semver",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"next-update": "next-update -k true",
"example-npm": "node bin/manpm.js chalk background",
"test-search-in-text": "node bin/manpm.js chalk cmder",
"example-github": "node bin/manpm.js https://github.com/bahmutov/object-fitter",
"example-es6-docs": "node bin/manpm.js bevacqua/es6 literals",
"test-hr": "DEBUG=manpm node bin/manpm.js hr",
"ban": "ban"
},
"files": [
"bin",
"src/*.js",
"!src/*-spec.js",
"CHECKLIST.md"
],
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/manpm.git"
},
"keywords": [
"man",
"manual",
"help",
"npm",
"utility",
"readme",
"cli"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/manpm/issues"
},
"homepage": "https://github.com/bahmutov/manpm#readme",
"dependencies": {
"@bahmutov/parse-github-repo-url": "0.1.0",
"bluebird": "3.3.4",
"check-more-types": "2.15.0",
"debug": "2.2.0",
"get-package-readme": "1.2.0",
"github-readme": "1.0.0",
"lazy-ass": "1.4.0",
"lodash": "4.8.1",
"marked": "0.3.5",
"marked-terminal": "https://github.com/mikaelbr/marked-terminal.git#35f6ddac9d9f32b11e85ceb6bc5f42642f06e456",
"marked-to-md": "1.0.1",
"package-json": "2.3.2",
"simple-bin-help": "1.6.0",
"simple-get": "1.4.3",
"update-notifier": "0.6.3"
},
"preferGlobal": true,
"release": {
"verifyConditions": {
"path": "condition-node-version",
"node": "4.3.0",
"verbose": true
}
},
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm run ban",
"npm test",
"npm run example-npm",
"npm run example-github",
"npm run example-es6-docs",
"npm run test-search-in-text",
"npm run test-hr"
],
"pre-push": [
"npm run size"
],
"post-commit": [],
"post-merge": []
},
"next-update": {
"skip": "simple-get"
}
},
"devDependencies": {
"ban-sensitive-files": "1.8.2",
"condition-node-version": "1.2.0",
"eslint": "2.6.0",
"exact-semver": "1.2.0",
"git-issues": "1.2.0",
"mocha": "2.4.5",
"next-update": "1.2.2",
"pre-git": "3.8.3",
"quote": "0.4.0",
"semantic-release": "6.2.1"
}
}