-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
{
"name": "github-slugger",
"description": "Generate a slug just like GitHub does for markdown headings.",
"version": "2.0.0",
"author": "Dan Flettre <[email protected]>",
"contributors": [
"Dan Flettre <[email protected]>",
"Titus Wormer <[email protected]> (http://wooorm.com)"
],
"bugs": {
"url": "https://github.com/Flet/github-slugger/issues"
},
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"regex.d.ts",
"regex.js"
],
"devDependencies": {
"@octokit/rest": "^19.0.0",
"@types/regenerate": "^1.0.0",
"@types/tape": "^4.0.0",
"@unicode/unicode-13.0.0": "^1.0.0",
"c8": "^7.0.0",
"hast-util-select": "^5.0.0",
"mdast-util-gfm": "^2.0.0",
"mdast-util-to-markdown": "^1.0.0",
"node-fetch": "^3.0.0",
"regenerate": "^1.0.0",
"rehype-parse": "^8.0.0",
"rimraf": "^3.0.0",
"standard": "*",
"tap-spec": "^5.0.0",
"tape": "^5.0.0",
"type-coverage": "^2.0.0",
"typescript": "^4.0.0",
"unified": "^10.0.0"
},
"homepage": "https://github.com/Flet/github-slugger",
"keywords": [
"anchor",
"github",
"hash",
"heading",
"markdown",
"slug",
"slugger",
"url"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Flet/github-slugger.git"
},
"scripts": {
"prepack": "npm run build && npm run format",
"build": "rimraf \"{script,test}/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage",
"format": "standard --fix",
"test-api": "tape test | tap-spec",
"test-coverage": "c8 --check-coverage --100 --reporter lcov npm run test-api",
"test": "npm run build && npm run format && npm run test-coverage"
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true
}
}