-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
{
"name": "marked-smartypants",
"version": "1.1.12",
"description": "marked extension for smartypants",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"browser": "./lib/index.umd.js",
"type": "module",
"types": "./src/index.d.ts",
"keywords": [
"marked",
"extension",
"smartypants"
],
"files": [
"lib/",
"src/"
],
"exports": {
"types": "./src/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"scripts": {
"test": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:cover": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:types": "tsd -f spec/index.test-d.ts -t src/index.d.ts",
"lint": "eslint",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markedjs/marked-smartypants.git"
},
"author": "Tony Brix <Tony@Brix.ninja> (https://Tony.Brix.ninja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/markedjs/marked-smartypants/issues"
},
"homepage": "https://github.com/markedjs/marked-smartypants#readme",
"peerDependencies": {
"marked": ">=4 <19"
},
"devDependencies": {
"@markedjs/eslint-config": "^1.0.14",
"@rollup/plugin-node-resolve": "^16.0.3",
"@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",
"cross-env": "^10.1.0",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"jest-cli": "^30.3.0",
"marked": "^18.0.2",
"rollup": "^4.60.2",
"semantic-release": "^25.0.3",
"tsd": "^0.33.0"
},
"dependencies": {
"smartypants": "^0.2.2"
}
}