-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 2.16 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
{
"name": "thinker-fts",
"version": "2.0.5",
"description": "Pure Javascript/Node.js in-memory full text search engine.",
"author": "Hexagon <github.com/hexagon>",
"contributors": [
{
"name": "Pehr Boman",
"email": "github.com/unkelpehr"
}
],
"type": "module",
"scripts": {
"test": "npm run test:lint && mocha",
"test:coverage": "echo Notimplemented",
"test:lint": "eslint ./**/*.js",
"test:lint:fix": "eslint --fix ./**/*.js",
"build": "npm update && npm run build:precleanup && npm run test:lint && npm run build:typings && npm run build:dist && npm run build:minify && npm run test:coverage && npm run test",
"build:ci": "npm run test:lint && npm run build:typings && npm run build:dist && npm run build:minify && npm run test:coverage && npm run test",
"build:precleanup": "(rm -rf dist/* || del /Q dist\\*)",
"build:dist": "rollup -c ./rollup.config.js",
"build:minify": "uglifyjs dist/thinker.cjs --source-map -o dist/thinker.min.js && uglifyjs dist/thinker.mjs --source-map -o dist/thinker.min.mjs",
"build:typings": "echo Notimplemented",
"build:cleanup": "(rm dist/thinker.mjs || del dist\\thinker.mjs)"
},
"main": "./dist/thinker.cjs",
"browser": "./dist/thinker.min.js",
"module": "./src/thinker.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/thinker.mjs",
"require": "./dist/thinker.cjs",
"browser": "./dist/thinker.min.js"
}
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/hexagon/thinker-fts"
},
"bugs": {
"url": "https://github.com/hexagon/thinker-fts/issues"
},
"keywords": [
"thinker",
"fts",
"fulltext",
"full-text-search",
"in-memory",
"levenshtein",
"soundex",
"porter",
"stemmer"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"eslint": "^8.10.0",
"fast-levenshtein": "^3.0.0",
"mocha": "^9.2.2",
"rollup": "^2.70.0",
"should": "^13.2.3",
"soundex": "^0.2.1",
"stemmer": "^2.0.0",
"uglify-js": "^3.15.3"
},
"license": "MIT"
}