forked from gatsby-contrib/gatsby-plugin-elasticlunr-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "@gatsby-contrib/gatsby-plugin-elasticlunr-search",
"version": "2.2.1",
"description": "Search for gatsby; implemented via elasticlunr.",
"main": "n/a",
"scripts": {
"build": "babel src --out-dir .",
"build:watch": "babel src --watch --out-dir .",
"default": "npm run build:watch",
"lint": "eslint ./",
"format": "prettier-eslint --write '**/*.{js,md,json}'",
"prepublish": "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.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-config-google": "^0.11.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.14.3",
"prettier-eslint-cli": "^4.7.1"
},
"dependencies": {
"elasticlunr": "^0.9.5"
},
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
}
}