-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.73 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
{
"name": "marked-base-url",
"version": "1.1.9",
"description": "marked base url",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"browser": "./lib/index.umd.js",
"types": "./src/index.d.ts",
"type": "module",
"keywords": [
"marked",
"extension",
"base",
"url"
],
"files": [
"lib/",
"src/"
],
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.cjs"
}
},
"scripts": {
"test": "node --test",
"test:cover": "node --experimental-test-coverage --test",
"test:types": "tsd -t src/index.d.ts -f types_test/index.test-d.ts",
"lint": "eslint",
"format": "eslint --fix",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markedjs/marked-base-url.git"
},
"author": "Tony Brix <Tony@Brix.ninja> (https://Tony.Brix.ninja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/markedjs/marked-base-url/issues"
},
"homepage": "https://github.com/markedjs/marked-base-url#readme",
"peerDependencies": {
"marked": ">= 4 < 19"
},
"devDependencies": {
"@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.8",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"marked": "^18.0.5",
"rollup": "^4.62.2",
"semantic-release": "^25.0.5",
"tsd": "^0.33.0"
},
"tsd": {
"compilerOptions": {
"paths": {
"marked-base-url": [
"./src"
]
}
}
}
}