-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "rfcs-tooling",
"version": "0.0.1",
"description": "Tooling to support emberjs/rfcs",
"private": true,
"scripts": {
"lint": "eslint .",
"test": "mocha test/**/*.mjs"
},
"author": "Katie Gengler",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"chai": "^4.3.7",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^6.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.3"
},
"dependencies": {
"@github-docs/frontmatter": "^1.3.1",
"chalk": "^5.2.0",
"deepmerge": "^4.3.0",
"mdast-util-to-string": "^3.1.1",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"semver": "^7.3.8",
"simple-git": "^3.16.0",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.2",
"yargs": "^17.6.2"
},
"engines": {
"node": ">= 16"
}
}