-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 811 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 811 Bytes
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
{
"name": "logrm",
"version": "0.3.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"lint": "eslint ."
},
"jest": {
"testPathIgnorePatterns": [
"/fixtures/"
]
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"bin": {
"logrm": "./src/commander.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/react": "^19.2.14",
"eslint": "^10.1.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"react": "^19.2.4"
},
"dependencies": {
"acorn": "^8.16.0",
"acorn-jsx": "^5.3.2",
"acorn-typescript": "^1.4.13",
"acorn-walk": "^8.3.5",
"commander": "^14.0.3",
"inquirer": "^13.3.2",
"recast": "^0.23.11"
}
}