-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·55 lines (55 loc) · 1.15 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
{
"name": "@webkitty/searchbox",
"version": "1.0.1",
"author": {
"name": "stuchl4n3k",
"url": "https://stuchl4n3k.net",
"email": "[email protected]"
},
"description": "A search box supporting multiple user-defined keywords.",
"keywords": [
"search",
"keyword",
"lexer",
"parser"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webkitty/searchbox"
},
"bugs": {
"url": "https://github.com/webkitty/searchbox/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"test:coverage": "npm run test -- --coverage"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testMatch": [
"**/spec/**/*.[jt]s?(x)"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"rootDir": "."
},
"dependencies": {
"moo": "^0.5.1"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/moo": "^0.5.3",
"@types/node": "^12.12.62",
"codecov": "^3.7.2",
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"typescript": "^3.9.7"
}
}