UNPKG

3.3 kBJSONView Raw
1{
2 "name": "mos",
3 "version": "0.19.0",
4 "description": "A pluggable module that injects content into your markdown files via hidden JavaScript snippets",
5 "files": [
6 "index.js",
7 "lib",
8 "plugins"
9 ],
10 "bin": "./lib/cli.js",
11 "preferDev": true,
12 "engines": {
13 "node": ">=4"
14 },
15 "main": "index.js",
16 "scripts": {
17 "commit": "git-cz",
18 "md:test": "node ./lib/cli test -x=\"lib/test-cli/**\"",
19 "lint": "eslint lib/**/*.js plugins/**/*.js index.js",
20 "test:code": "mocha",
21 "test": "npm run test:code && npm run lint && npm run md:test",
22 "coverage": "istanbul cover -x \"**/*.spec.js\" node_modules/mocha/bin/_mocha -- -R spec",
23 "precoveralls": "istanbul cover -x \"**/*.spec.js\" node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && npm i coveralls@2",
24 "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
25 "postcoveralls": "rm -rf ./coverage",
26 "md": "node ./lib/cli -x=\"lib/test-cli/**\"",
27 "prepublish": "npm test",
28 "semantic-release": "semantic-release pre && npm publish && semantic-release post"
29 },
30 "repository": {
31 "type": "git",
32 "url": "https://github.com/zkochan/mos"
33 },
34 "keywords": [
35 "markdown",
36 "mdown",
37 "mkdn",
38 "mkd",
39 "md",
40 "readme",
41 "template",
42 "generator",
43 "documentation",
44 "badges",
45 "shields",
46 "example",
47 "test"
48 ],
49 "author": {
50 "name": "Zoltan Kochan",
51 "email": "zoltan.kochan@gmail.com",
52 "url": "http://kochan.io"
53 },
54 "license": "MIT",
55 "bugs": {
56 "url": "https://github.com/zkochan/mos/issues"
57 },
58 "homepage": "https://github.com/zkochan/mos#readme",
59 "dependencies": {
60 "@zkochan/read-pkg-up": "^1.0.2",
61 "@zkochan/remark": "^0.1.1",
62 "@zkochan/remark-toc": "^0.2.0",
63 "@zkochan/tap-diff": "^1.0.0",
64 "async-unist-util-visit": "^1.0.0",
65 "chalk": "~1.1.3",
66 "file-exists": "~1.0.0",
67 "github-url-to-object": "~2.2.1",
68 "glob": "~7.0.3",
69 "meow": "~3.7.0",
70 "mos-init": "^1.0.0",
71 "mos-plugin-dependencies": "^1.0.2",
72 "mos-plugin-example": "^0.1.0",
73 "mos-plugin-installation": "^0.2.1",
74 "mos-plugin-license": "^0.1.0",
75 "mos-plugin-markdownscript": "^1.0.0",
76 "mos-plugin-package-json": "^1.0.0",
77 "mos-plugin-shields": "^1.0.1",
78 "mos-plugin-snippet": "^1.0.0",
79 "normalize-newline": "~2.0.0",
80 "normalize-path": "~2.0.1",
81 "relative": "~3.0.2",
82 "remark-mos": "^1.4.0",
83 "reserved-words": "^0.1.1",
84 "resolve": "~1.1.7",
85 "run-async": "~2.2.0",
86 "tape": "~4.5.1",
87 "update-notifier": "^0.7.0"
88 },
89 "devDependencies": {
90 "chai": "^3.4.1",
91 "cz-conventional-changelog": "1.1.5",
92 "eslint": "^2.9.0",
93 "eslint-config-standard": "^5.3.0",
94 "eslint-plugin-promise": "^1.1.0",
95 "eslint-plugin-standard": "^1.3.2",
96 "execa": "^0.4.0",
97 "ghooks": "^1.2.1",
98 "istanbul": "^0.4.2",
99 "markdownscript": "^1.1.0",
100 "mocha": "^2.3.4",
101 "mos-plugin-scripts": "^0.1.0",
102 "semantic-release": "^4.3.5",
103 "validate-commit-msg": "^2.6.1"
104 },
105 "config": {
106 "commitizen": {
107 "path": "./node_modules/cz-conventional-changelog"
108 },
109 "ghooks": {
110 "commit-msg": "node ./node_modules/validate-commit-msg/index.js",
111 "pre-commit": "npm test"
112 }
113 }
114}
\No newline at end of file