-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 1.91 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
{
"name": "quick-score",
"version": "0.2.0",
"description": "A JavaScript string-scoring and fuzzy-matching library based on the Quicksilver algorithm, designed for smart auto-complete.",
"keywords": [
"string",
"score",
"sort",
"search",
"fuzzy",
"filter",
"quicksilver",
"autocomplete",
"auto-complete",
"filter list",
"intuitive sort",
"smart sort"
],
"license": "MIT",
"author": "John Dunning (https://github.com/fwextensions)",
"repository": "github:fwextensions/quick-score",
"homepage": "https://fwextensions.github.io/quick-score-demo",
"bugs": "https://github.com/fwextensions/quick-score/issues",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"prebuild": "npm run test:coverage",
"build": "npm run build:lib && npm run build:docs",
"build:lib": "rimraf dist lib && rollup -c",
"build:dts": "rimraf dist-dts && tsc",
"build:docs": "rimraf docs && jsdoc -c jsdoc/config.json",
"prepare": "npm run build:lib",
"pretest": "eslint src",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage"
},
"babel": {
"env": {
"test": {
"presets": [
"@babel/preset-env"
]
}
}
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/*.js",
"!src/index.js"
],
"setupFilesAfterEnv": [
"./test/setup.js"
]
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"jsdoc": "^3.6.10",
"rimraf": "^3.0.2",
"rollup": "^2.75.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^4.7.3"
}
}