-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.26 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
{
"name": "jest-environment-jsdom-thirteen",
"version": "1.0.0",
"repository": "https://github.com/theneva/jest-environment-jsdom-thirteen",
"license": "MIT",
"main": "build/index.js",
"dependencies": {
"jest-mock": "^24.0.0",
"jest-util": "^24.0.0",
"jsdom": "^13.0.0"
},
"scripts": {
"test": "jest",
"build": "mkdirp build && babel src/index.js -o build/index.js",
"prepublish": "yarn build"
},
"description": "JSDOM environment for Jest with JSDOM 13 (which doesn't support Node 6)",
"author": "Martin Lehmann",
"private": false,
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.82.0",
"jest": "^24.1.0",
"mkdirp": "^0.5.1"
}
}