-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "jscodemigrate",
"version": "0.0.0-semantic-release",
"description": "A wrapper around jscodeshift that runs like rails migrations.",
"main": "index.js",
"scripts": {
"test": "cd test && bats suite.bats",
"build": "rm -rf dist; babel src/ --out-dir dist/",
"watch": "babel src/ --out-dir dist/ --watch",
"prepublish": "npm run build"
},
"bin": {
"jscodemigrate": "./bin/jscodemigrate.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brysgo/jscodemigrate.git"
},
"keywords": [
"codemod",
"lint",
"migrate",
"recast"
],
"author": "Bryan Goldstein <[email protected]> (http://brysgo.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/brysgo/jscodemigrate/issues"
},
"homepage": "https://github.com/brysgo/jscodemigrate#readme",
"dependencies": {
"babel-core": "^6.24.0",
"babel-runtime": "^6.23.0",
"commander": "^3.0.0",
"dashify": "^2.0.0",
"jscodeshift": "^0.6.1",
"moment": "^2.18.1",
"rc": "^1.1.5",
"require-tree": "^1.1.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.0",
"babel-preset-latest": "^6.24.0",
"bats": "^1.0.2"
}
}