-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"author": "Alberto Terragni",
"bugs": "https://github.com/ilterra/markdown-yaml-metadata-parser/issues",
"dependencies": {
"detect-newline": "^3.1.0",
"js-yaml": "^4.1.0"
},
"description": "Parse YAML metadata (front matter) in a markdown document",
"devDependencies": {
"ascjs": "^6.0.3",
"mkdirp": "^3.0.1",
"standard": "^17.1.2"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
"require": "./cjs/lib/index.js",
"default": "./lib/index.js"
},
"files": [
"cjs",
"lib"
],
"keywords": [
"front matter",
"markdown",
"metadata",
"parser",
"yaml"
],
"license": "MIT",
"main": "./cjs/lib/index.js",
"module": "./lib/index.js",
"name": "markdown-yaml-metadata-parser",
"repository": {
"type": "git",
"url": "https://github.com/ilterra/markdown-yaml-metadata-parser"
},
"scripts": {
"build": "mkdirp cjs/lib cjs/test && ascjs lib cjs/lib --no-default && ascjs test cjs/test --no-default",
"lint": "standard --fix",
"prepublishOnly": "npm run build",
"pretest": "standard && npm run build",
"test": "npm run test:esm && npm run test:cjs",
"test:cjs": "node --test --experimental-test-coverage cjs/test/index.test.js",
"test:esm": "node --test --experimental-test-coverage test/index.test.js"
},
"type": "module",
"version": "4.0.0"
}