-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.7 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
{
"name": "jest-runner-remark",
"version": "0.0.0-development",
"description": "Jest runner to check markdown files with remark",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "npm run build; NODE_OPTIONS=--experimental-vm-modules jest",
"prepack": "npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/keplersj/jest-runner-remark.git"
},
"keywords": [
"jest",
"jest-runner",
"lint",
"remark",
"remark-lint",
"markdown",
"md"
],
"author": "Kepler Sticka-Jones <[email protected]>",
"funding": {
"type": "github-sponsors",
"url": "https://github.com/sponsors/keplersj"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/keplersj/jest-runner-remark/issues"
},
"homepage": "https://github.com/keplersj/jest-runner-remark#readme",
"peerDependencies": {
"jest": ">= 27"
},
"dependencies": {
"create-lite-jest-runner": "^1.1.0",
"remark": "^14.0.2",
"unified-engine": "^10.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@types/jest": "27.5.2",
"eslint": "8.57.1",
"eslint-config-starstuff": "1.5.67",
"husky": "9.1.7",
"jest": "27.5.1",
"jest-runner-eslint": "2.2.1",
"jest-runner-prettier": "1.0.0",
"prettier": "2.8.8",
"ts-jest": "27.1.5",
"typescript": "4.9.5"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"eslintConfig": {
"extends": "starstuff/auto",
"env": {
"node": true
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}