-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "in-string-list",
"version": "2.0.1",
"description": "Check if a string is in a list of strings.",
"exports": "./index.js",
"type": "module",
"bin": {
"in-string-list": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrjohnson/in-string-list.git"
},
"keywords": [],
"author": "Jon Johnson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jrjohnson/in-string-list/issues"
},
"homepage": "https://github.com/jrjohnson/in-string-list#readme",
"scripts": {
"test": "mocha tests/",
"lint": "eslint . --cache",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"dependencies": {
"meow": "^13.2.0"
},
"engines": {
"node": ">= 18"
},
"files": [
"index.js",
"bin/"
],
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"mocha": "^10.8.1",
"prettier": "3.3.3"
}
}