-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.1 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.1 KB
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
{
"name": "remark-public-images",
"version": "0.1.2",
"author": "David Worms <david@adaltas.com> (http://www.adaltas.com)",
"dependencies": {
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"dedent": "^1.5.3",
"mocha": "^11.1.0",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"rollup": "^4.34.9",
"should": "^13.2.3",
"unified": "^11.0.5"
},
"exports": {
".": {
"import": {
"default": "./lib/index.js"
},
"require": {
"default": "./dist/remark-public-images.cjs"
}
}
},
"files": [
"/dist",
"/lib"
],
"license": "MIT",
"main": "./dist/remark-public-images.cjs",
"module": "lib/index.js",
"mocha": {
"throw-deprecation": true,
"require": [
"should"
],
"inline-diffs": true,
"timeout": 40000,
"reporter": "spec",
"recursive": true
},
"scripts": {
"build": "rollup -c",
"test": "mocha 'test/**/*.js'"
},
"type": "module"
}