forked from joostdecock/remark-copy-linked-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 2.94 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "remark-copy-linked-files",
"description": "Find files which are linked to from markdown and copy them to the public directory",
"version": "1.5.0",
"repository": "sergioramos/remark-copy-linked-files",
"main": "index.js",
"keywords": [
"markdown",
"remark",
"remarkjs",
"remark-plugin"
],
"publishConfig": {
"registry": "https://registry.npmjs.com",
"access": "public"
},
"scripts": {
"eslint": "eslint . --ext .js",
"fmt": "prettier --config package.json --write '**/*'",
"test": "cross-env NODE_ENV=test c8 -r lcovonly -r text ava --timeout 9999 --serial"
},
"dependencies": {
"apr-for-each": "^3.0.3",
"apr-intercept": "^3.0.4",
"apr-reduce": "^3.0.3",
"cheerio": "^1.0.0-rc.5",
"cp-file": "^9.0.0",
"is-relative-url": "^3.0.0",
"lodash.uniqby": "^4.7.0",
"mz": "^2.7.0",
"rev-hash": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.13",
"@babel/preset-react": "^7.13.13",
"@commitlint/cli": "^12.1.0",
"@commitlint/config-conventional": "^12.1.0",
"@mdx-js/mdx": "^2.0.0-next.9",
"@mdx-js/react": "^2.0.0-next.9",
"@rollup/plugin-virtual": "^2.0.3",
"apr-map": "^3.0.3",
"apr-parallel": "^3.0.3",
"ava": "^3.15.0",
"c8": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-xo-space": "^0.27.0",
"hasha": "^5.2.2",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"lodash.flatten": "^4.4.0",
"ls-all": "^1.1.0",
"make-dir": "^3.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rehype-stringify": "^8.0.0",
"remark-html": "^13.0.1",
"remark-parse": "^9.0.0",
"remark-prism": "^1.3.4",
"remark-stringify": "^9.0.1",
"rollup": "^2.43.1",
"rollup-plugin-babel": "^4.4.0",
"to-vfile": "^6.1.0",
"unified": "^9.2.1",
"vfile": "^4.2.1"
},
"resolutions": {
"fsevents": "1.2.13"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --config package.json --write",
"git add"
],
"*.*": [
"prettier --config package.json --write",
"git add"
]
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"xo-space/esnext",
"prettier"
],
"rules": {
"new-cap": 0,
"camelcase": 0,
"capitalized-comments": 0,
"no-promise-executor-return": 0
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
}
}