-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.35 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
{
"name": "snoop",
"description": "Like ack, for the DOM",
"version": "1.0.0",
"main": "dist/index.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"lodash.isobject": "^3.0.2"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"scripts": {
"lint": "eslint 'lib/**'",
"build": "tsc",
"start": "tsc -w",
"prepublish": "npm run build",
"test": "bun test",
"test:watch": "bun test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zcaceres/snoop.git"
},
"keywords": [
"tool",
"web",
"search",
"ack",
"browser"
],
"author": "zach.dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/zcaceres/snoop/issues"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^7.32.0",
"jest": "^29.6.1",
"jsdom": "^22.1.0",
"ts-jest": "^29.2.5",
"typescript": "^4.1.2"
},
"homepage": "https://github.com/zcaceres/snoop#readme"
}