This repository has been archived by the owner on Jan 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
81 lines (81 loc) · 1.52 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ava-codemods",
"version": "0.3.2",
"description": "Codemods to simplify upgrading AVA versions",
"license": "MIT",
"repository": "avajs/ava-codemods",
"author": {
"name": "James Talmage",
"email": "[email protected]",
"url": "github.com/jamestalmage"
},
"bin": {
"ava-codemods": "ava-codemods.js",
"tape-to-ava": "tape-to-ava.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"ava-codemods.js",
"cli-utils.js",
"tape-to-ava.js",
"codemods.json",
"lib"
],
"keywords": [
"codemod",
"ava",
"migrate",
"migrations",
"upgrade",
"transform",
"jscodeshift",
"codemods"
],
"dependencies": {
"arrify": "^1.0.1",
"execa": "^0.4.0",
"globby": "^6.0.0",
"inquirer": "^1.0.2",
"is-git-clean": "^1.1.0",
"jscodeshift": "0.3.19",
"lodash.flatten": "^4.1.1",
"lodash.uniq": "^4.2.1",
"meow": "^3.7.0",
"npm-run-path": "^1.0.0",
"pkg-conf": "^1.1.2",
"semver": "^5.1.0",
"update-notifier": "^1.0.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel": "^5.8.38",
"jscodeshift-ava-tester": "^1.1.0",
"xo": "^0.16.0"
},
"ava": {
"require": [
"babel/register"
]
},
"babel": {
"only": [
"lib/**",
"ava-codemods.js",
"cli-utils.js",
"tape-to-ava.js",
"test/_helpers.js"
],
"sourceMaps": "inline"
},
"xo": {
"esnext": true,
"rules": {
"xo/filename-case": 0
}
}
}