-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 978 Bytes
/
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
{
"name": "front-matter-loader",
"version": "2.0.0",
"description": "Webpack loader to extract frontmatter using jxson/front-matter",
"main": "index.js",
"scripts": {
"jest": "jest",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"test": "npm run format:check && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elliottsj/front-matter-loader.git"
},
"keywords": [
"yaml",
"frontmatter",
"front-matter"
],
"author": "Spencer Elliott <me@elliottsj.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elliottsj/front-matter-loader/issues"
},
"homepage": "https://github.com/elliottsj/front-matter-loader#readme",
"dependencies": {
"front-matter": "^4.0.0"
},
"devDependencies": {
"jest": "26.6.3",
"json-loader": "0.5.7",
"prettier": "2.8.8",
"webpack": "5.97.1"
},
"jest": {
"testEnvironment": "node"
}
}