-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
41 lines (41 loc) · 946 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
{
"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.30",
"nuclide-format-js": "0.0.36"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.12.2",
"fbjs-scripts": "^0.7.1",
"jest": "^21.2.1"
},
"jest": {
"globals": {
"baseDir": "../../../"
},
"roots": [
"transforms/__tests__",
"extensions"
]
}
}