forked from nuxt/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·77 lines (77 loc) · 1.98 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@nuxt/content",
"version": "1.3.2",
"description": "Write your content inside your Nuxt app",
"repository": "nuxt/content",
"license": "MIT",
"contributors": [
{
"name": "NuxtJS Team"
}
],
"types": "types/index.d.ts",
"files": [
"lib",
"types/*.d.ts"
],
"main": "lib/",
"scripts": {
"dev": "nuxt example",
"lint": "eslint --ext .js,.vue example lib test",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest -i",
"test:watch": "jest --watch"
},
"dependencies": {
"@lokidb/full-text-search": "^2.0.0-beta.9",
"@lokidb/loki": "^2.0.0-beta.9",
"change-case": "^4.1.1",
"chokidar": "^3.4.0",
"consola": "^2.14.0",
"csvtojson": "^2.0.10",
"defu": "^2.0.4",
"escape-html": "^1.0.3",
"gray-matter": "^4.0.2",
"hookable": "^4.1.1",
"html-tags": "^3.1.0",
"js-yaml": "3.14.0",
"json5": "2.1.3",
"mkdirp": "^1.0.4",
"node-req": "^2.1.2",
"node-res": "^5.0.1",
"p-queue": "6.5.0",
"prismjs": "^1.20.0",
"rehype-raw": "^4.0.2",
"rehype-sort-attribute-values": "^3.0.1",
"rehype-sort-attributes": "^3.0.1",
"remark-autolink-headings": "^6.0.1",
"remark-external-links": "^6.1.0",
"remark-footnotes": "^1.0.0",
"remark-parse": "^8.0.2",
"remark-rehype": "^7.0.0",
"remark-slug": "^6.0.0",
"remark-squeeze-paragraphs": "^4.0.0",
"unified": "^9.0.0",
"ws": "^7.3.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@nuxtjs/eslint-config": "^3.0.0",
"@nuxtjs/module-test-utils": "^1.6.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"codecov": "^3.7.0",
"eslint": "^7.3.1",
"husky": "^4.2.5",
"nuxt": "^2.13.2",
"jest": "^26.1.0",
"puppeteer": "^4.0.1",
"standard-version": "^8.0.0",
"tib": "^0.7.4"
},
"publishConfig": {
"access": "public"
}
}