-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
43
44
45
46
47
48
49
50
51
52
{
"name": "@date-fns/upgrade-codemod",
"version": "1.0.2",
"description": "date-fns codemod 1.x -> 2.0",
"main": "src/transform.ts",
"author": "Deniss Kozickis",
"license": "MIT",
"dependencies": {
"@date-fns/upgrade": "^1.0.1",
"change-case": "^3.1.0",
"execa": "^2.1.0",
"globby": "^10.0.1",
"inquirer": "^6.5.1",
"jscodeshift": "^0.6.4",
"meow": "^5.0.0",
"transform-imports": "^2.1.0"
},
"devDependencies": {
"@types/execa": "^2.0.0",
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.0.15",
"@types/jscodeshift": "^0.6.2",
"@types/lodash.isempty": "^4.4.6",
"@types/meow": "^5.0.0",
"@types/node": "^12.6.8",
"husky": "^3.0.2",
"jest": "^24.8.0",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"scripts": {
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier"
],
"*.{js,jsx}": [
"prettier"
]
},
"bin": {
"date-fns-codemod": "./bin/date-fns-codemod.js"
}
}