-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.15 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
53
54
55
56
57
58
59
60
61
{
"name": "mrn-codemod",
"version": "1.0.8",
"description": "react native codemod scripts by NetEase Cloud Music team",
"scripts": {
"test": "jest"
},
"jest": {
"collectCoverage": true,
"verbose": true,
"testEnvironment": "node",
"roots": [
"transform"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"transform/**/*.{js}": [
"prettier --write",
"git add"
],
"index.js": [
"prettier --write",
"git add"
]
},
"keywords": [
"react",
"react native",
"codemod"
],
"repository": {
"type": "git",
"url": "https://github.com/x-orpheus/mrn-codemod.git"
},
"license": "MIT",
"bin": {
"mrn-codemod": "./bin/index.js"
},
"dependencies": {
"@babel/core": "^7.5.4",
"@babel/runtime": "^7.6.3",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"execa": "^2.0.3",
"is-git-clean": "^1.1.0",
"jscodeshift": "^0.6.4",
"readdir": "^0.1.0",
"semver": "^6.3.0",
"prettier": "^1.18.2"
},
"devDependencies": {
"husky": "^3.0.2",
"jest": "^24.8.0",
"lint-staged": "^9.2.1"
}
}