-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1006 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1006 Bytes
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
{
"name": "chai-to-jasmine",
"version": "1.0.0",
"description": "chai to jasmine codemod",
"main": "index.js",
"scripts": {
"test": "jest",
"test:chai-to-jasmine": "jscodeshift -t ./transforms/chai-to-jasmine.js ./transforms/__testfixtures__/datepicker.input.js -d -p --",
"test:mocha-mix": "jscodeshift -t ./transforms/mocha-mix-to-enzyme.js ./transforms/__testfixtures__/datepicker.input.js -d -p --",
"jest": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"glob": "^7.1.1",
"jest": "^18.1.0",
"jest-cli": "^18.1.0",
"jscodeshift": "^0.3.30"
},
"devDependencies": {
"builtin-modules": "^1.1.1",
"enhanced-resolve": "^3.0.3",
"eslint": "^3.13.1",
"lodash.flattendeep": "^4.4.0"
}
}