-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "@nexucis/fuzzy",
"version": "0.5.1",
"description": "small, standalone fuzzy search / fuzzy filter. browser or node",
"module": "index.js",
"main": "cjs/index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"build:cjs": "tsc --project ./tsconfig.cjs.json",
"test": "ts-mocha -n loader=ts-node/esm -p tsconfig.cjs.json src/**/*.test.ts",
"test-coverage": "nyc ts-mocha -n loader=ts-node/esm -p tsconfig.cjs.json src/**/*.test.ts",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint --fix src/ --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nexucis/fuzzy.git"
},
"keywords": [
"fuzzy",
"search",
"filter"
],
"author": "Augustin Husson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nexucis/fuzzy/issues"
},
"homepage": "https://github.com/Nexucis/fuzzy#readme",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"chai": "^4.4.1",
"codecov": "^3.8.3",
"eslint": "^8.57.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.6.0",
"nyc": "^17.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}