-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
59 lines (59 loc) · 1.26 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
{
"name": "babel-upgrade",
"version": "1.0.1",
"description": "Upgrade tool for Babel",
"bin": "./bin/babel-upgrade",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"start": "npm run build -- -w",
"test": "jest",
"prepublish": "npm test && npm run build"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"lib",
"src",
"bin",
"readme.md"
],
"keywords": [
"babel",
"babel 7",
"babel-upgrade",
"codemod"
],
"author": "Henry Zhu <[email protected]>",
"repository": "babel/babel-upgrade",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"commander": "^2.18.0",
"cross-spawn": "^6.0.4",
"diff": "^4.0.1",
"globby": "^9.1.0",
"has-yarn": "^2.0.0",
"json5": "^2.1.0",
"pify": "^4.0.1",
"read-pkg-up": "^5.0.0",
"semver": "^5.5.0",
"sort-keys": "^2.0.0",
"write": "^1.0.3",
"write-json-file": "^3.1.0",
"write-pkg": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"jest": "^24.5.0"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/node_modules/@babel/polyfill/dist/polyfill.js"
]
}
}