-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "@nuxtjs/markdownit",
"version": "2.0.0",
"homepage": "nuxt-community/markdownit-module",
"license": "MIT",
"main": "dist/module.js",
"types": "dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "siroc build && mkdist --src src/runtime --dist dist/runtime",
"dev": "nuxt test/fixture",
"format": "yarn lint --fix",
"lint": "eslint --ext .js,.ts,.vue .",
"release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"@nuxtjs/markdownit-loader": "^1.1.1",
"defu": "^3.2.2",
"raw-loader": "^4.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@nuxt/test-utils": "^0.1.2",
"@nuxt/types": "^2.14.12",
"@nuxtjs/eslint-config-typescript": "^5.0.0",
"@types/markdown-it": "^12.0.1",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"mkdist": "^0.1.1",
"nuxt-edge": "^2.15.0-26851753.1f1db806",
"siroc": "^0.6.2",
"standard-version": "^9.1.0"
},
"publishConfig": {
"access": "public"
}
}