forked from secretlint/secretlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.86 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
72
73
74
75
76
{
"name": "@secretlint/secretlint-rule-basicauth",
"version": "9.0.0",
"description": "A secretlint rule that check Basic Authentication.",
"keywords": [
"secretlint",
"rule",
"url"
],
"homepage": "https://github.com/secretlint/secretlint/tree/master/packages/@secretlint/secretlint-rule-basicauth/",
"bugs": {
"url": "https://github.com/secretlint/secretlint/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/secretlint/secretlint.git"
},
"license": "MIT",
"author": "azu",
"type": "module",
"exports": {
".": {
"import": {
"types": "./module/index.d.ts",
"default": "./module/index.js"
},
"default": "./module/index.js"
},
"./package.json": "./package.json"
},
"main": "./module/index.js",
"types": "./module/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"module/",
"src/"
],
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"prepublishOnly": "npm run clean && npm run build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepublish": "npm run --if-present build",
"test": "node --loader ts-node/esm --test test/index.test.ts",
"updateSnapshot": "UPDATE_SNAPSHOT=1 npm test",
"watch": "tsc --build --watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4
},
"dependencies": {
"@secretlint/types": "^9.0.0",
"@textlint/regexp-string-matcher": "^2.0.2"
},
"devDependencies": {
"@secretlint/tester": "^9.0.0",
"@types/node": "^20.17.14",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]",
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"publishConfig": {
"access": "public"
}
}