forked from angeloashmore/gatsby-plugin-local-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.43 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "gatsby-plugin-local-search",
"description": "Gatsby plugin for providing client-side search for data available in Gatsby's GraphQL layer using a variety of engines",
"version": "2.0.1",
"license": "MIT",
"main": "dist/gatsby-node.js",
"typings": "dist/gatsby-node.d.ts",
"files": [
"dist",
"src",
"gatsby-node.js"
],
"sideEffects": false,
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "rimraf ./dist",
"start": "yarn clean && microbundle watch src/gatsby-node.ts -f cjs",
"build": "yarn clean && microbundle build src/gatsby-node.ts -f cjs",
"format": "prettier --write README.md 'src/**/*.{ts,tsx,md}'",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepare": "yarn build",
"release": "standard-version"
},
"author": "Angelo Ashmore",
"homepage": "https://github.com/angeloashmore/gatsby-plugin-local-search",
"repository": {
"type": "git",
"url": "https://github.com/angeloashmore/gatsby-plugin-local-search.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"search",
"lunr",
"flexsearch"
],
"dependencies": {
"flexsearch": "^0.6.32",
"lodash": "^4.17.19",
"lunr": "^2.3.8",
"pascal-case": "^3.1.1"
},
"peerDependencies": {
"gatsby": ">= 2.20.0"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@types/jest": "^26.0.4",
"@types/lodash": "^4.14.157",
"@types/lunr": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"gatsby": "^2.24.2",
"husky": "^4.2.5",
"jest": "^26.1.0",
"microbundle": "^0.12.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"standard-version": "^8.0.0",
"ts-jest": "^26.1.1",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "always",
"printWidth": 80
}
}