UNPKG

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