-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 940 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
{
"name": "jest-expect-codemod",
"version": "0.0.1",
"description": "CodeMods for migrating `chai.assert`, `chai.expect`, `assert` -based test assertions to jest's `expect` assertions",
"repository": "https://github.com/devenbansod/jest-expect-codemod",
"author": "Deven Bansod <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"jest": "jest",
"lint": "eslint .",
"test": "./__tests__/runner.sh",
"shift": "jscodeshift"
},
"dependencies": {
"jscodeshift": "^0.5.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.18.2",
"eslint-config-babel": "^7.0.2",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.2",
"prettier": "^1.11.1",
"prettier-eslint": "^8.8.1"
},
"jest": {
"testPathIgnorePatterns": [
"./__tests__/fixtures/"
],
"testEnvironment": "node"
}
}