forked from medfreeman/markdown-it-toc-and-anchor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.82 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
{
"name": "markdown-it-toc-and-anchor",
"version": "4.2.0",
"description": "markdown-it plugin to add toc and anchor links in headings",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"markdown",
"toc",
"anchor"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/medfreeman/markdown-it-toc-and-anchor.git",
"main": "dist/index.js",
"files": [
"dist",
"src",
"!**/__tests__"
],
"dependencies": {
"clone": "^2.1.0",
"uslug": "^1.0.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"ava": "^1.0.1",
"coveralls": "^3.0.2",
"eslint": "^5.11.0",
"eslint-config-i-am-meticulous": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"markdown-it": "^8.2.2",
"nyc": "^13.1.0",
"standard-version": "^4.4.0"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --fix .",
"tests": "ava",
"pretest": "npm -s run lint",
"test": "npm -s run tests",
"test-with-coverage": "nyc npm run test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "babel src --ignore \"src/__tests__/**/*.js\" --out-dir dist --delete-dir-on-start",
"release": "standard-version; git push --follow-tags",
"prepare": "yarn build"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
},
"eslintConfig": {
"extends": [
"eslint-config-i-am-meticulous"
]
},
"ava": {
"files": [
"**/__tests__/*.js"
],
"require": [
"@babel/register"
]
},
"nyc": {
"exclude": [
"**/__tests__/**"
],
"include": [
"src/**"
]
}
}