-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 873 Bytes
/
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
{
"name": "d3-upgrade-codemod",
"version": "0.1.0",
"description": "Codemode to migrate d3 from version 3.x",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"code:format": "prettier --write *.md transforms/*.js transforms/common/*.js",
"code:format:check": "prettier --check *.md transforms/*.js transforms/common/*.js"
},
"keywords": [
"d3",
"jscodeshift",
"codemod"
],
"author": "Daniele Esposti <[email protected]>",
"license": "MIT",
"engines": {
"node": "^16"
},
"dependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"eslint": "^8.7.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^28.3.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.0.1",
"jscodeshift": "~0.15.0",
"prettier": "^3.0.0"
}
}