-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.31 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
{
"name": "@nozbe/microfuzz",
"description": "A tiny, simple, fast fuzzy search library",
"version": "1.0.0",
"scripts": {
"up": "yarn",
"ci:check": "concurrently -n 'test,eslint,flow,ts' -c 'auto' 'npm run test' 'npm run eslint' 'npm run flow' 'npm run ts' --kill-others-on-fail",
"ci": "npm run ci:check",
"flow": "flow check --max-warnings=0 --color=always",
"ts": "tsc",
"eslint": "eslint ./src -c ./.eslintrc.js --cache --cache-location ./.cache/.eslintcache",
"test": "jest",
"build": "rm -fr dist && babel src --out-dir dist --ignore 'src/__tests__' --copy-files --no-copy-ignored"
},
"keywords": [
"fuzzy search",
"command palette",
"jump to",
"autocomplete",
"react"
],
"author": {
"name": "Radek Pietruszewski",
"email": "[email protected]",
"url": "https://radex.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Nozbe/microfuzz.git"
},
"bugs": {
"url": "https://github.com/Nozbe/microfuzz/issues"
},
"homepage": "https://github.com/Nozbe/microfuzz#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"dist",
"src",
"react.js",
"react.d.ts",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-flow-comments": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/preset-env": "^7.22.9",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"chalk": "^4.1.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^7.6.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"flow-bin": "0.201.0",
"jest": "^29",
"patch-package": "^6.5.1",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-native": "^0.72.3",
"typescript": "^4.5.0"
}
}