forked from skovhus/jest-codemods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.9 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
82
83
{
"name": "jest-codemods",
"version": "0.10.1",
"description": "Codemods for migrating test files to Jest",
"license": "MIT",
"repository": "skovhus/jest-codemods",
"author": {
"name": "Kenneth Skovhus",
"email": "kenneth.skovhus@gmail.com",
"url": "github.com/skovhus"
},
"bin": "bin/jest-codemods.js",
"engines": {
"node": ">=4"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "babel src -d dist --ignore *.test.js",
"check": "npm run lint && npm run test:cov",
"check:bail": "eslint src && npm run test:cov",
"clean": "rm -rf lib coverage npm-debug.log dist",
"lint": "eslint --fix src",
"prepublish": "npm run clean && npm run check:bail && npm run build",
"ci": "npm run check:bail",
"test:cov": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"test": "jest --runInBand"
},
"keywords": [
"codemod",
"jest",
"ava",
"tape",
"mocha",
"chai",
"proxyquire",
"migrate",
"migrations",
"upgrade",
"transform",
"jscodeshift",
"codemods"
],
"dependencies": {
"chalk": "~1.1.3",
"execa": "~0.4.0",
"globby": "~6.0.0",
"inquirer": "~1.1.3",
"is-git-clean": "~1.1.0",
"jscodeshift": "~0.3.28",
"meow": "~3.7.0",
"update-notifier": "~1.0.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.2.2",
"babel-jest": "^16.0.0",
"babel-preset-es2015-node4": "^2.1.0",
"eslint": "^3.19.0",
"eslint-config-prettier": "^1.6.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^2.0.1",
"jest": "^19.0.2",
"prettier": "^1.0.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"text",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"testEnvironment": "node"
}
}