-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "markdown-it-color",
"version": "2.1.1",
"description": "Inline color plugin for markdown-it",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"src",
"types"
],
"scripts": {
"build": "run-s build:lib build:type",
"build:lib": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js",
"build:type": "tsc --emitDeclarationOnly --declaration -P tsconfig.types.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nkjmsss/markdown-it-color.git"
},
"keywords": [
"markdown-it",
"markdown-it-plugin",
"markdown",
"color"
],
"author": "nkjmsss",
"license": "MIT",
"bugs": {
"url": "https://github.com/nkjmsss/markdown-it-color/issues"
},
"homepage": "https://github.com/nkjmsss/markdown-it-color#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/preset-env": "^7.5.5",
"@types/markdown-it": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"core-js": "^3.2.1",
"esbuild": "^0.11.5",
"markdown-it": "^12.0.3",
"npm-run-all": "^4.1.5",
"typescript": "^4.1.3"
}
}