-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.34 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
{
"name": "@nuxtjs/lunr-module",
"version": "0.3.2",
"description": "Full-text search with pre-build indexes for Nuxt.js using lunr.js",
"license": "MIT",
"contributors": [
{
"name": "pimlie <[email protected]>"
}
],
"main": "lib/module.js",
"repository": "https://github.com/nuxt-community/lunr-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt example",
"build": "nuxt build example",
"start": "nuxt start example",
"lint": "eslint --ext .js,.vue example lib test",
"lint:template": "eslint --no-ignore --ext .js,.vue example/.nuxt/lunr/",
"test": "jest",
"release": "yarn lint && yarn test && yarn lint:template && standard-version"
},
"files": [
"lib"
],
"dependencies": {
"consola": "^2.15.0",
"lunr": "^2.3.9",
"lunr-languages": "^1.4.0"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"eslint": "latest",
"get-port": "latest",
"jest": "latest",
"jsdom": "^16.4.0",
"nuxt-edge": "latest",
"nuxt-i18n": "6.15.4",
"standard-version": "latest",
"tib": "^0.7.4"
}
}