-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.83 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
{
"name": "marked-smartypants-lite",
"version": "1.0.2",
"description": "marked extension for smartypants - lite version",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"browser": "./lib/index.umd.js",
"type": "module",
"keywords": [
"marked",
"extension",
"smartypants"
],
"files": [
"lib/",
"src/"
],
"exports": {
".": {
"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",
"lint:dry": "eslint .",
"lint": "eslint . --fix",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calculuschild/marked-smartypants-lite.git"
},
"author": "Trevor Buckner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/calculuschild/marked-smartypants-lite/issues"
},
"homepage": "https://github.com/calculuschild/marked-smartypants-lite#readme",
"peerDependencies": {
"marked": ">=4 <12"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.2",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest-cli": "^29.7.0",
"marked": "^11.1.1",
"rollup": "^4.13.0",
"semantic-release": "^23.0.5"
}
}