forked from secretlint/secretlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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": "@secretlint/secretlint-rule-privatekey",
"version": "2.1.1",
"description": "A secretlint rule for PrivateKey.",
"keywords": [
"secretlint",
"ssh",
"privatekey"
],
"homepage": "https://github.com/secretlint/secretlint/tree/master/packages/@secretlint/secretlint-rule-privatekey/",
"bugs": {
"url": "https://github.com/secretlint/secretlint/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/secretlint/secretlint.git"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "cross-env NODE_ENV=production tsc -p .",
"clean": "rimraf lib/",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepublish": "npm run --if-present build",
"updateSnapshot": "UPDATE_SNAPSHOT=1 npm test",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4
},
"dependencies": {
"@textlint/regexp-string-matcher": "^1.1.0",
"string.prototype.matchall": "^4.0.2"
},
"devDependencies": {
"@secretlint/secretlint-scripts": "^2.1.1",
"@secretlint/tester": "^2.1.1",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"cross-env": "^7.0.0",
"mocha": "^7.0.1",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"publishConfig": {
"access": "public"
}
}