forked from ueno-llc/markdown-to-prismic-richtext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.13 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": "@gijsbotje/md-to-prismic-richtext",
"version": "0.0.6",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"prismic",
"markdown"
],
"repository": {
"type": "git",
"url": "https://github.com/gijsbotje/md-to-prismic-richtext.git"
},
"description": "Converts markdown to Prismic RichText-compatible objects",
"author": "Gijsbotje <contact@gijsbotje.nl> (https://gijsbotje.nl)",
"scripts": {
"test": "jest",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "yarn format && yarn lint && tsc"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.129",
"@types/node": "^12.0.2",
"@types/prismic-dom": "^2.1.0",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"prismic-dom": "^2.1.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"dependencies": {
"lodash": "^4.17.21",
"prismic-richtext": "^1.0.1",
"remark-parse": "^6.0.3"
},
"files": [
"lib/**/*"
]
}