-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
52
53
54
55
56
57
58
59
{
"name": "parcel-transformer-markdown-front-matter",
"version": "3.0.1",
"description": "Parcel plugin to load markdown file with yaml-front-matter.",
"author": "François de Metz <[email protected]>",
"license": "MIT",
"source": "./src/index.ts",
"main": "./dist/main.js",
"module": "./dist/module.js",
"types": "./dist/index.d.ts",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"check": "tsc --noEmit",
"example": "yarn workspace example build",
"test": "yarn workspace test test"
},
"keywords": [
"parcel",
"parcel-bundler",
"parcel-plugin",
"bundler",
"plugin",
"transformer",
"markdown"
],
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/indoorequal/parcel-transformer-markdown-front-matter.git"
},
"peerDependencies": {
"parcel": "^2.2.0"
},
"devDependencies": {
"@parcel/packager-ts": "2.13.3",
"@parcel/transformer-typescript-types": "2.13.3",
"@types/yaml-front-matter": "^4.1.3",
"parcel": "^2.13.3",
"typescript": ">=3.0.0"
},
"dependencies": {
"@parcel/plugin": "^2.2.0",
"marked": "^15.0.0",
"yaml-front-matter": "^4.1.1"
},
"engines": {
"node": ">= 12.0.0",
"parcel": "^2.2.0"
},
"workspaces": [
"example/",
"test/"
],
"packageManager": "[email protected]"
}