-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "markdown-it-fancy-lists",
"version": "1.1.0",
"description": "Extension for markdown-it to support additional numbering types for ordered lists ",
"keywords": [ "markdown-it-plugin", "markdown-it", "markdown", "commonmark", "fancy-lists", "ordered-list" ],
"author": {
"name": "Moxio",
"email": "info@moxio.com",
"url": "https://www.moxio.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Moxio/markdown-it-fancy-lists.git"
},
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/mocha --require ts-node/register ./test/**/*.ts",
"prepare": "npm run build",
"build": "npm run build:commonjs && npm run build:esm",
"build:commonjs": "tsc",
"build:esm": "tsc -m esNext --outDir esm"
},
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"lib/",
"esm/"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"dependencies": {
"roman-numerals": "^0.3.2"
},
"devDependencies": {
"@markedjs/html-differ": "^3.0.4",
"@types/chai": "^4.2.14",
"@types/markdown-it": "^13.0.2",
"@types/mocha": "^8.2.0",
"@types/roman-numerals": "^0.3.0",
"chai": "^4.2.0",
"markdown-it": "^14.0.0",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"peerDependencies": {
"markdown-it": "^12.0.3 || ^13.0.1 || ^14.0.0"
}
}