-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "showdown-toc",
"version": "1.1.0",
"description": "A showdown extension to output toc info.",
"keywords": [
"showdown-extension",
"showdown",
"markdown",
"markdown-toc"
],
"homepage": "https://github.com/ahungrynoob/showdown-toc#readme",
"bugs": {
"url": "https://github.com/ahungrynoob/showdown-toc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahungrynoob/showdown-toc.git"
},
"license": "MIT",
"author": "ahungrynoob",
"main": "dist/index.js",
"unpkg": "dist/index.umd.min.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "father build",
"ci": "father test --coverage",
"lint-staged": "lint-staged",
"lint-staged:ts": "eslint --ext .ts,.tsx",
"lint:fix": "eslint --fix --cache --format=pretty **/*.ts",
"lint:ts": "eslint --cache --format=pretty **/*.ts",
"test": "father test"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/showdown": "^1.9.3",
"@umijs/fabric": "^1.2.1",
"eslint": "^6.6.0",
"father": "^2.24.1",
"husky": "^3.0.9",
"lint-staged": "^9.0.0",
"prettier": "^1.19.1",
"showdown": "^1.9.1",
"typescript": "^3.7.2"
},
"peerDependencies": {
"showdown": "^1.9.1"
}
}