UNPKG

2.9 kBJSONView Raw
1{
2 "name": "mos",
3 "version": "0.13.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 "engines": {
12 "node": ">=4"
13 },
14 "main": "index.js",
15 "scripts": {
16 "commit": "git-cz",
17 "md:test": "node ./lib/cli test -x=\"lib/test-cli/**\"",
18 "lint": "eslint lib/**/*.js plugins/**/*.js index.js",
19 "test:code": "mocha",
20 "test": "npm run test:code && npm run lint && npm run md:test",
21 "coverage": "istanbul cover -x \"**/*.spec.js\" node_modules/mocha/bin/_mocha -- -R spec",
22 "precoveralls": "istanbul cover -x \"**/*.spec.js\" node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && npm i coveralls@2",
23 "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
24 "postcoveralls": "rm -rf ./coverage",
25 "md": "node ./lib/cli -x=\"lib/test-cli/**\"",
26 "prepublish": "npm test",
27 "semantic-release": "semantic-release pre && npm publish && semantic-release post"
28 },
29 "repository": {
30 "type": "git",
31 "url": "https://github.com/zkochan/mos"
32 },
33 "keywords": [
34 "markdown",
35 "mdown",
36 "mkdn",
37 "mkd",
38 "md",
39 "readme",
40 "template",
41 "generator",
42 "documentation",
43 "badges",
44 "shields",
45 "example",
46 "test"
47 ],
48 "author": {
49 "name": "Zoltan Kochan",
50 "email": "zoltan.kochan@gmail.com",
51 "url": "http://kochan.io"
52 },
53 "license": "MIT",
54 "bugs": {
55 "url": "https://github.com/zkochan/mos/issues"
56 },
57 "homepage": "https://github.com/zkochan/mos#readme",
58 "dependencies": {
59 "async-unist-util-visit": "~1.0.0",
60 "chalk": "~1.1.3",
61 "codemo": "~0.1.0",
62 "file-exists": "~1.0.0",
63 "github-url-to-object": "~2.2.1",
64 "glob": "~7.0.3",
65 "independent": "~0.1.1",
66 "meow": "~3.7.0",
67 "normalize-newline": "~2.0.0",
68 "normalize-path": "~2.0.1",
69 "read-pkg-up": "~1.0.1",
70 "relative": "~3.0.2",
71 "remark": "~4.2.2",
72 "remark-toc": "~3.0.0",
73 "resolve": "~1.1.7",
74 "run-async": "~2.2.0",
75 "shields": "~2.1.0",
76 "tap-diff": "~0.1.1",
77 "tape": "~4.5.1"
78 },
79 "devDependencies": {
80 "babel-cli": "^6.7.7",
81 "babel-preset-es2015-rollup": "^1.1.1",
82 "chai": "^3.4.1",
83 "cz-conventional-changelog": "1.1.5",
84 "eslint": "^2.8.0",
85 "eslint-config-standard": "^5.1.0",
86 "eslint-plugin-promise": "^1.1.0",
87 "eslint-plugin-standard": "^1.3.2",
88 "execa": "^0.3.0",
89 "ghooks": "^1.2.1",
90 "istanbul": "^0.4.2",
91 "mocha": "^2.3.4",
92 "semantic-release": "^4.3.5",
93 "validate-commit-msg": "^2.6.1"
94 },
95 "config": {
96 "commitizen": {
97 "path": "./node_modules/cz-conventional-changelog"
98 },
99 "ghooks": {
100 "commit-msg": "node ./node_modules/validate-commit-msg/index.js",
101 "pre-commit": "npm test"
102 }
103 }
104}
\No newline at end of file