-
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.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 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": "javascript-recipe-starter",
"version": "1.0.0",
"description": "Example OpenRewrite JavaScript recipes and tests to help you get started",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/moderneinc/javascript-recipe-starter.git"
},
"keywords": [
"openrewrite",
"moderne",
"recipe",
"refactoring",
"javascript",
"typescript",
"codemods",
"ast"
],
"bugs": {
"url": "https://github.com/moderneinc/javascript-recipe-starter/issues"
},
"homepage": "https://docs.openrewrite.org/",
"scripts": {
"build": "rimraf ./dist && tsc --build tsconfig.build.json",
"test": "npm run build && jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@openrewrite/rewrite": "^8.77.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/react": "^18.3.0",
"mutative": "^1.2.0",
"jest": "^29.7.0",
"rimraf": "^6.1.0",
"tmp-promise": "^3.0.3",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"overrides": {
"glob": "^11.0.0",
"inflight": "^2.0.0"
}
}