-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 970 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 970 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
40
{
"name": "esupgrade",
"version": "0.1.0",
"description": "Auto-upgrade your JavaScript syntax",
"type": "module",
"main": "src/index.js",
"bin": {
"esupgrade": "./bin/esupgrade.js"
},
"scripts": {
"test": "node --test --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=lcov.info --test-coverage-exclude=tests/**/* tests/*.test.js tests/**/*.test.js"
},
"keywords": [
"javascript",
"ecmascript",
"modernize",
"upgrade",
"codemod",
"ast",
"transform"
],
"author": "Johannes Maron",
"license": "BSD-2-Clause",
"dependencies": {
"ast-types": ">=0.14.2",
"commander": ">=14.0.2",
"diff": ">=8.0.2",
"jscodeshift": ">=17.3.0"
},
"engines": {
"node": ">=24.0.0"
},
"prettier": {
"semi": false
},
"repository": {
"type": "git",
"url": "https://github.com/codingjoe/esupgrade.git"
}
}