-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "hast-util-to-portable-text",
"version": "0.0.3",
"description": "Transform hast to portable text",
"main": "index.js",
"scripts": {
"build": "babel -d lib src",
"prepublishOnly": "npm run build",
"test": "tap",
"coverage": "npm test -- --coverage-report=lcov"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rexxars/hast-util-to-portable-text.git"
},
"keywords": [
"hast",
"portable-text",
"rehype",
"html"
],
"author": "Espen Hovlandsdal <espen@hovlandsdal.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rexxars/hast-util-to-portable-text/issues"
},
"homepage": "https://github.com/rexxars/hast-util-to-portable-text#readme",
"dependencies": {
"extend": "^3.0.2",
"hash-it": "^4.0.4",
"rehype-minify-whitespace": "^2.0.3",
"unist-util-visit-parents": "^2.1.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-sanity": "^0.140.0",
"hastscript": "^5.1.0",
"prettier": "^1.15.2",
"tap": "^14.2.0",
"unist-builder": "^1.0.4"
}
}