-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
84 lines (84 loc) · 2.28 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
{
"name": "update-markdown",
"version": "1.1.3",
"description": "Updates part of existing markdown document",
"main": "index.js",
"bin": {
"um": "./bin/update-markdown.js"
},
"scripts": {
"test": "mocha spec/*-spec.js",
"test-all": "npm test && npm run example && npm run cat-example && npm run 3rd-party",
"style": "jscs *.js bin/*.js spec/*.js --fix",
"example": "DEBUG=um ./bin/update-markdown.js example/input.md '## foo' example/section.md",
"cat-example": "cat example/section.md | DEBUG=um ./bin/update-markdown.js example/input.md '## foo'",
"3rd-party": "modules-used | ./bin/update-markdown.js README.md '### 3rd party modules'",
"next-update": "next-update -k true",
"commit": "git-issues && commit-wizard",
"issues": "git-issues",
"lint": "eslint bin/*.js index.js spec/*.js",
"pkgfiles": "pkgfiles",
"size": "tarball=\"$(npm pack .)\"; wc -c \"${tarball}\"; tar tvf \"${tarball}\"; rm \"${tarball}\";"
},
"files": [
"bin",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/update-markdown.git"
},
"keywords": [
"markdown",
"md",
"update",
"cli"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/update-markdown/issues"
},
"homepage": "https://github.com/bahmutov/update-markdown#readme",
"dependencies": {
"bluebird": "3.0.5",
"check-more-types": "2.2.0",
"debug": "2.2.0",
"get-stdin-promise": "0.1.1",
"lazy-ass": "1.1.0",
"lodash": "3.10.1",
"marked": "0.3.5",
"marked-to-md": "1.0.1"
},
"devDependencies": {
"describe-it": "1.7.0",
"eslint": "1.10.1",
"git-issues": "1.2.0",
"jscs": "2.6.0",
"mocha": "2.3.4",
"modules-used": "1.2.0",
"next-update": "0.9.5",
"pkgfiles": "2.3.0",
"pre-git": "1.3.1"
},
"config": {
"pre-git": {
"commit-msg": "validate-commit-msg",
"pre-commit": [
"npm run style",
"npm run lint",
"npm run example",
"npm run cat-example",
"npm run 3rd-party"
],
"pre-push": [
"npm run size",
"npm run pkgfiles"
],
"post-commit": [
"npm version"
],
"post-merge": []
}
}
}