-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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": "@geut/remark-chan",
"version": "3.2.6",
"description": "Parser mdast to chast",
"type": "module",
"module": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "standard \"**/*.js\""
},
"dependencies": {
"@geut/chast": "^3.2.6",
"unist-util-remove-position": "^4.0.0",
"unist-util-select": "^4.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dirname-filename-esm": "^1.1.1",
"jest": "^27.0.0",
"jest-esm-transformer": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "8.1.0",
"standard": "^16.0.3",
"to-vfile": "^6.1.0",
"unified": "^9.2.0",
"unist-util-inspect": "^7.0.0"
},
"jest": {
"resolver": "<rootDir>/../../jest-module-resolver.js",
"transform": {}
},
"standard": {
"env": [
"node",
"jest"
]
},
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "ISC",
"repository": "https://github.com/geut/chan/tree/master/packages/remark-chan",
"publishConfig": {
"access": "public"
}
}