forked from bevacqua/fuzzysearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "fuzzyhighlight",
"description": "Tiny, fast, and dependency-less fuzzy search + highlighting in JavaScript",
"version": "4.0.1",
"homepage": "https://github.com/pchiwan/fuzzysearch",
"author": {
"name": "Sílvia Mur Blanch",
"email": "[email protected]",
"url": "https://silvia.murblan.ch"
},
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/pchiwan/fuzzysearch.git"
},
"scripts": {
"build": "parcel build ./src/index.ts --out-dir lib --no-source-maps --target node",
"build:demo": "parcel build ./demo/index.html --out-dir docs --no-source-maps --public-url .",
"lint": "eslint src/**.*ts test/**.*ts",
"start": "parcel ./demo/index.html --open",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^23.3.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^5.11.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^23.6.0",
"parcel-bundler": "^1.11.0",
"ts-jest": "^23.10.5",
"typescript": "^4.2.4",
"typescript-eslint-parser": "^21.0.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node"
}
}