forked from cpojer/js-codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 977 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
34
35
36
37
38
39
40
41
42
{
"name": "js-codemod",
"author": "Christoph Pojer",
"version": "8.0.0",
"description": "Codemod scripts to transform code to next generation JS",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cpojer/js-codemod.git"
},
"scripts": {
"test": "f() { EXIT=0; npm run lint || EXIT=$?; jest $@ || EXIT=$?; exit $EXIT; }; f",
"lint": "eslint ."
},
"keywords": [
"codemod",
"recast"
],
"dependencies": {
"jscodeshift": "^0.3.20",
"nuclide-format-js-base": "0.0.35"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"babel-jest": "^9.0.2",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^1.7.3",
"fbjs-scripts": "^0.5.0",
"jest": "^13.2.3"
},
"jest": {
"automock": false,
"globals": {
"baseDir": "../../../"
},
"testPathDirs": [
"transforms/__tests__",
"extensions"
]
}
}