-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.2 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.2 KB
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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "marked-custom-heading-id",
"version": "2.0.17",
"description": "marked extension template",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"browser": "./lib/index.umd.js",
"types": "./lib/index.d.cts",
"type": "module",
"files": [
"lib/",
"src/"
],
"exports": {
".": {
"import": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
}
},
"keywords": [
"marked",
"extension",
"custom",
"heading",
"id"
],
"scripts": {
"test": "jest --verbose",
"test:cover": "jest --coverage",
"test:types": "npm run build && tsd -t src/index.d.ts -f spec/index.test-d.ts && attw -P",
"test:all": "npm run test:cover && npm run test:types && npm run lint",
"lint": "eslint .",
"format": "eslint . --fix",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markedjs/marked-custom-heading-id.git"
},
"author": "Tony Brix <Tony@Brix.ninja> (https://Tony.Brix.ninja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/markedjs/marked-custom-heading-id/issues"
},
"homepage": "https://github.com/markedjs/marked-custom-heading-id#readme",
"peerDependencies": {
"marked": ">=1 <19"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@markedjs/eslint-config": "^1.0.14",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"babel-jest": "^30.3.0",
"eslint": "^10.2.0",
"globals": "^17.5.0",
"jest-cli": "^30.3.0",
"marked": "^18.0.0",
"rollup": "^4.60.1",
"rollup-plugin-copy": "^3.5.0",
"semantic-release": "^25.0.3",
"tsd": "^0.33.0"
},
"tsd": {
"compilerOptions": {
"paths": {
"marked-custom-heading-id": [
"./src"
]
}
}
}
}