-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.58 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
{
"name": "showdown-copy-code",
"description": "Showdown extension that adds a button above code blocks to quickly and easily copy code to the clipboard.",
"keywords": [
"showdown",
"highlight",
"extension",
"code",
"blocks",
"button",
"copy"
],
"license": "MIT",
"version": "1.0.2",
"main": "dist/showdownCopyCode.cjs.js",
"module": "dist/showdownCopyCode.es.js",
"browser": "dist/showdownCopyCode.js",
"types": "dist/showdownCopyCode.d.ts",
"author": "Piotr Placzek (piotrpdev)",
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"test": "npm run build && mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/piotrpdev/showdown-copy-code.git"
},
"bugs": {
"url": "https://github.com/piotrpdev/showdown-copy-code/issues"
},
"homepage": "https://github.com/piotrpdev/showdown-copy-code#readme",
"dependencies": {
"showdown": "^2.0.0-alpha"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/mocha": "^9.1.0",
"@types/showdown": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.9.0",
"mocha": "^9.2.0",
"rollup": "^2.67.2",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-terser": "^7.0.2",
"showdown-highlight": "^2.1.8",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}