-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.65 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
{
"private": true,
"name": "secretlint.github.io",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/secretlint/secretlint.github.io/tree/master/",
"bugs": {
"url": "https://github.com/secretlint/secretlint.github.io/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/secretlint/secretlint.github.io.git"
},
"license": "MIT",
"author": "azu",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module/",
"src/"
],
"scripts": {
"test": "mocha \"test/**/*.ts\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks",
"dev": "parcel src/index.html",
"build": "parcel build --public-url ./ src/index.html",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@codemirror/lint": "^6.4.0",
"@secretlint/core": "^9.0.0",
"@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
"codemirror": "^6.0.1"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.8",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"events": "^3.3.0",
"lint-staged": "^13.2.3",
"mocha": "^10.2.0",
"parcel": "^2.9.3",
"path-browserify": "^1.0.1",
"prettier": "^3.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"typescript": "^5.1.6"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}