forked from andrew-codes/gatsby-plugin-elasticlunr-search
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "@gatsby-contrib/gatsby-plugin-elasticlunr-search",
"version": "3.0.2",
"description": "Search for gatsby; implemented via elasticlunr.",
"main": "gatsby-node.js",
"scripts": {
"build": "babel src --out-dir .",
"build:watch": "babel src --watch --out-dir .",
"default": "npm run build:watch",
"lint": "eslint ./src",
"format": "prettier-eslint --write '**/*.{js,md,json}'",
"prepare": "npm run build",
"publish": "npm run lint && npm publish --access=public",
"test": "echo 'Error: no test specified' && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gatsby-contrib/gatsby-plugin-elasticlunr-search.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"lunr",
"search",
"elastic lunr"
],
"author": "Andrew Smith <[email protected]>",
"contributors": [
"Benjamin Abel"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gatsby-contrib/gatsby-plugin-elasticlunr-search/issues"
},
"homepage": "https://github.com/gatsby-contrib/gatsby-plugin-elasticlunr-search#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-preset-gatsby-package": "^0.4.4",
"eslint": "^5.16.0",
"eslint-config-google": "^0.11.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-react": "^7.20.0",
"prettier": "^1.19.1",
"prettier-eslint-cli": "^4.7.1"
},
"dependencies": {
"elasticlunr": "^0.9.5"
},
"peerDependencies": {
"gatsby": ">3.0.0"
}
}