-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
87 lines (87 loc) · 2.48 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@digitalocean/do-markdownit",
"version": "1.16.0",
"description": "Markdown-It plugin for the DigitalOcean Community.",
"keywords": [
"markdown",
"markdown-it",
"markdown-it-plugin",
"digitalocean",
"highlight",
"caption",
"figure",
"columns",
"details",
"collapse",
"spoiler",
"asciinema",
"codepen",
"glitch",
"caniuse",
"youtube",
"underline",
"heading",
"anchor",
"prism"
],
"main": "index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/digitalocean/do-markdownit.git"
},
"homepage": "https://github.com/digitalocean/do-markdownit#readme",
"bugs": "https://github.com/digitalocean/do-markdownit/issues",
"scripts": {
"lint": "npm run lint:js && npm run lint:scss",
"lint:fix": "npm run lint:js:fix && npm run lint:scss:fix",
"lint:js": "eslint \"{*,@(modifiers|rules|script|util|dev)/**/*}.js\" --ignore-pattern \"dev/dist/**/*\"",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:scss": "stylelint \"@(styles|dev)/**/*.scss\"",
"lint:scss:fix": "npm run lint:scss -- --fix",
"jsdoc": "jsdoc -c .jsdoc.json",
"types": "tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir types --lib dom --lib webworker --skipLibCheck",
"test": "jest",
"postinstall": "node script/prism.js",
"prepublishOnly": "npm run types",
"dev": "webpack serve --config dev/webpack.config.js"
},
"author": "DigitalOcean",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/markdown-it": "^14.1.1",
"@types/node": "~20.11.30",
"css-loader": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.4",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"jsdoc-tsimport-plugin": "^1.0.5",
"markdown-it": "^14.1.0",
"sass": "^1.77.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"stylelint": "^16.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.1.0",
"htmlparser2": "^9.1.0",
"prismjs": "^1.29.0"
},
"peerDependencies": {
"markdown-it": ">=12.0.0"
}
}