-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.21 KB
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
{
"name": "remark-metadata",
"version": "0.2.1",
"description": "Add metadata about a Markdown file as Front Matter.",
"license": "MIT",
"keywords": [
"remark",
"front-matter",
"remark-plugin"
],
"repository": {
"type": "git",
"url": "git@github.com:temando/remark-metadata.git"
},
"dependencies": {
"js-yaml": "^3.10.0",
"remark-frontmatter": "^1.1.0"
},
"devDependencies": {
"changelog-verify": "^1.1.0",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.0.0",
"jest": "^21.2.1",
"remark-parse": "^4.0.0",
"remark-stringify": "^4.0.0",
"to-vfile": "^2.1.2",
"unified": "^6.1.5",
"version-changelog": "^2.1.0",
"vfile": "^2.2.0"
},
"scripts": {
"lint": "$(npm bin)/eslint src",
"teardown": "rm -rf test/runtime/*",
"test": "npm run teardown && $(npm bin)/jest",
"test:coverage": "npm run teardown && $(npm bin)/jest --coverage --coverageReporters text text-summary",
"preversion": "npm run lint && npm run test",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md"
},
"main": "src/index.js",
"files": [
"src"
]
}