forked from secretlint/secretlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
{
"name": "@secretlint/secretlint-rule-preset-recommend",
"version": "2.1.1",
"description": "Recommended rule preset of secretlint.",
"keywords": [
"secretlint",
"rule",
"rule-preset"
],
"homepage": "https://github.com/secretlint/secretlint/tree/master/packages/@secretlint/secretlint-rule-preset-recommend/",
"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": {
"cp-canary": "cp ../secretlint-rule-preset-canary/src/index.ts src/ && cp -r ../secretlint-rule-preset-canary/test/ test && npm run updateSnapshot",
"build": "rollup --config",
"build:tsc": "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": {
"@secretlint/secretlint-rule-aws": "^2.1.1",
"@secretlint/secretlint-rule-basicauth": "^2.1.1",
"@secretlint/secretlint-rule-gcp": "^2.1.1",
"@secretlint/secretlint-rule-npm": "^2.1.1",
"@secretlint/secretlint-rule-privatekey": "^2.1.1",
"@secretlint/secretlint-rule-sendgrid": "^2.1.1",
"@secretlint/secretlint-rule-slack": "^2.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^4.0.0",
"@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",
"rollup": "^2.0.2",
"ts-node": "^8.6.2",
"ts-node-test-register": "^8.0.1",
"typescript": "^3.8.2"
},
"publishConfig": {
"access": "public"
}
}