UNPKG

1.87 kBJSONView Raw
1{
2 "name": "remark-frontmatter",
3 "version": "1.0.0",
4 "description": "Frontmatter (yaml, toml, and more) support for remark",
5 "license": "MIT",
6 "keywords": [
7 "frontmatter",
8 "yaml",
9 "toml",
10 "markdown",
11 "remark"
12 ],
13 "repository": "wooorm/remark-frontmatter",
14 "bugs": "https://github.com/wooorm/remark-frontmatter/issues",
15 "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
16 "contributors": [
17 "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
18 ],
19 "files": [
20 "index.js",
21 "lib"
22 ],
23 "dependencies": {
24 "fault": "^1.0.1",
25 "xtend": "^4.0.1"
26 },
27 "devDependencies": {
28 "browserify": "^14.0.0",
29 "esmangle": "^1.0.0",
30 "is-hidden": "^1.1.0",
31 "not": "^0.1.0",
32 "nyc": "^11.0.2",
33 "remark": "^8.0.0",
34 "remark-cli": "^4.0.0",
35 "remark-preset-wooorm": "^3.0.0",
36 "tape": "^4.4.0",
37 "to-vfile": "^2.1.2",
38 "unified": "^6.1.5",
39 "xo": "^0.18.0"
40 },
41 "scripts": {
42 "build-md": "remark *.md -qfo",
43 "build-bundle": "browserify index.js -s remarkFrontmatter > remark-frontmatter.js",
44 "build-mangle": "esmangle remark-frontmatter.js > remark-frontmatter.min.js",
45 "build": "npm run build-md && npm run build-bundle && npm run build-mangle",
46 "lint": "xo",
47 "test-api": "node test",
48 "test-coverage": "nyc --reporter lcov tape test/index.js",
49 "test": "npm run build && npm run lint && npm run test-coverage"
50 },
51 "nyc": {
52 "check-coverage": true,
53 "lines": 100,
54 "functions": 100,
55 "branches": 100
56 },
57 "xo": {
58 "space": true,
59 "esnext": false,
60 "rules": {
61 "guard-for-in": "off"
62 },
63 "ignores": [
64 "remark-frontmatter.js"
65 ]
66 },
67 "remarkConfig": {
68 "plugins": [
69 [
70 "./",
71 [
72 "yaml",
73 "toml"
74 ]
75 ],
76 "preset-wooorm"
77 ]
78 }
79}