-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "markdown-it-broken-image-placeholder",
"version": "1.1.0",
"description": "markdown-it plugin for replacing broken image link with fallback one",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc -p ./tsconfig.json",
"lint": "tslint -p tsconfig.json --fix",
"prettier": "prettier --write 'src/**/*'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeetCode-OpenSource/markdown-it-broken-image-placeholder.git"
},
"bugs": {
"url": "https://github.com/LeetCode-OpenSource/markdown-it-broken-image-placeholder/issues"
},
"homepage": "https://github.com/LeetCode-OpenSource/markdown-it-broken-image-placeholder#readme",
"keywords": [
"markdown-it",
"markdown-it-plugin"
],
"author": "LeetCode front-end team",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint -p tsconfig.json --fix",
"git add"
]
},
"devDependencies": {
"@types/codemirror": "^0.0.108",
"@types/markdown-it": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"husky": "^4.0.0",
"lint-staged": "^10.0.1",
"markdown-it": "^12.0.0",
"prettier": "2.2.1",
"tslib": "^2.0.0",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-react": "^4.1.0",
"tslint-sonarts": "^1.7.0",
"typescript": "^3.1.6"
},
"peerDependencies": {
"markdown-it": "^12.0.0"
}
}