UNPKG

1.36 kBJSONView Raw
1{
2 "name": "remark-yaml-config",
3 "version": "2.0.1",
4 "description": "Configure remark with YAML front-matter",
5 "license": "MIT",
6 "keywords": [
7 "yaml",
8 "options",
9 "config",
10 "settings",
11 "remark"
12 ],
13 "dependencies": {
14 "remark-yaml": "^2.0.0"
15 },
16 "repository": "wooorm/remark-yaml-config",
17 "author": "Titus Wormer <tituswormer@gmail.com>",
18 "files": [
19 "index.js"
20 ],
21 "devDependencies": {
22 "browserify": "^12.0.0",
23 "eslint": "^1.0.0",
24 "esmangle": "^1.0.0",
25 "istanbul": "^0.4.0",
26 "jscs": "^2.0.0",
27 "jscs-jsdoc": "^1.0.0",
28 "remark": "^3.0.0",
29 "remark-github": "^2.0.0",
30 "remark-lint": "^2.0.0",
31 "remark-toc": "^2.0.0",
32 "remark-usage": "^2.0.0",
33 "tape": "^4.0.0"
34 },
35 "scripts": {
36 "build-bundle": "browserify --no-builtins index.js -s remarkYAMLConfig > remark-yaml-config.js",
37 "build-mangle": "esmangle remark-yaml-config.js > remark-yaml-config.min.js",
38 "build-md": "remark . --quiet --frail",
39 "build": "npm run build-md && npm run build-bundle && npm run build-mangle",
40 "lint-api": "eslint .",
41 "lint-style": "jscs --reporter inline .",
42 "lint": "npm run lint-api && npm run lint-style",
43 "test-api": "node test.js",
44 "test-coverage": "istanbul cover test.js",
45 "test": "npm run build && npm run lint && npm run test-coverage"
46 }
47}