-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "libsearch",
"version": "0.1.1",
"description": "Small, fast full-text search",
"main": "dist/search.js",
"types": "dist/search.d.ts",
"repository": "git@github.com:thesephist/libsearch.git",
"author": "Linus Lee <linus@thesephist.com>",
"license": "MIT",
"type": "module",
"keywords": [
"search"
],
"files": [
"lib",
"dist"
],
"scripts": {
"test": "mocha test/search.js",
"lint": "eslint *.js ./lib/* ./src/* ./test/*",
"fmt": "eslint --fix *.js ./lib/* ./src/* ./test/*",
"build:w": "tsc -w",
"build:tsc": "tsc",
"build:cjs": "webpack --config webpack.config.js",
"build:all": "tsc && webpack --config webpack.config.js",
"clean": "rm -r dist/",
"docs": "litterate --config litterate.config.cjs"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-loader": "^8.2.5",
"eslint": "^8.20.0",
"litterate": "^0.1.5",
"mocha": "^10.0.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}