-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1010 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
43
44
{
"name": "codemods",
"version": "0.0.0-the-current-version",
"description": "A collection of codemods I have created, some for learning some for actual usecases.",
"main": "./index.js",
"bin": {
"rcm": "./cli.js"
},
"repository": "https://github.com/relekang/codemods.git",
"ava": {
"files": [
"*/test.js"
],
"require": [
"babel-register",
"babel-polyfill"
],
"verbose": true
},
"dependencies": {
"babel-polyfill": "6.9.0",
"chalk": "1.1.3",
"jscodeshift": "0.3.20",
"lodash": "4.12.0",
"nomnom": "1.8.1"
},
"devDependencies": {
"ava": "^0.15.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"bluebird": "^3.4.0",
"chai": "^3.5.0",
"diff": "^2.2.2",
"eslint": "^2.10.2",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0"
},
"scripts": {
"test": "ava --verbose",
"lint": "eslint ."
},
"author": "Rolf Erik Lekang",
"license": "MIT"
}