-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "remark-plugins",
"private": true,
"license": "MIT",
"repository": "github:Symbitic/remark-plugins",
"scripts": {
"coverage": "jest --coverage",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "ava",
"prepublishOnly": "npm run build",
"publish": "lerna publish"
},
"jest": {
"testMatch": [
"**/packages/**/*.spec.ts"
],
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
}
},
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm",
"--no-warnings=ExperimentalWarning"
],
"snapshotDir": "__snapshots__"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.2",
"@types/mdast": "^3.0.7",
"@types/node": "^16.6.1",
"@types/unist": "^2.0.6",
"ava": "^3.15.0",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"rehype-stringify": "^9.0.1",
"remark": "^14.0.1",
"remark-parse": "^10.0.0",
"remark-rehype": "^9.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5",
"unified": "^10.1.0"
}
}