-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
{
"name": "react-use-flexsearch",
"version": "0.2.0-next.0",
"description": "React hook to search a FlexSearch index",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"build:watch": "npm run build -- --watch",
"format": "prettier --write 'src/**/*.js' 'rollup.config.js' 'README.md'",
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"release": "standard-version",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"homepage": "https://github.com/angeloashmore/react-use-flexsearch",
"repository": {
"type": "git",
"url": "https://github.com/angeloashmore/react-use-flexsearch.git"
},
"keywords": [
"react",
"component",
"search",
"flexsearch"
],
"author": "Angelo Ashmore",
"license": "MIT",
"dependencies": {
"flexsearch": "^0.6.22"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-testing-library": "^5.8.0",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-babel": "4.3.2",
"standard-version": "^5.0.2"
},
"peerDependencies": {
"react": ">=16.8"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}