You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.2 KiB

7 years ago
{
"name": "react-jsdom",
"version": "2.0.0",
"description": "Render actual DOM nodes in Node.js",
"main": "src/index.js",
"scripts": {
"test": "xo && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"xo": {
7 years ago
"extends": [
"xo-lukechilds",
"xo-react"
]
},
"ava": {
"babel": {
"presets": [
"@ava/stage-4",
"react"
]
}
7 years ago
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/react-jsdom.git"
},
"keywords": [
"react",
"dom",
"jsdom",
"test"
],
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/react-jsdom/issues"
},
"homepage": "https://github.com/lukechilds/react-jsdom",
"dependencies": {
"window": "^4.1.1"
},
"peerDependencies": {
"react-dom": "^15.6.1"
},
7 years ago
"devDependencies": {
"ava": "^0.20.0",
7 years ago
"babel-preset-react": "^6.24.1",
7 years ago
"coveralls": "^2.13.1",
"eslint-config-xo-lukechilds": "^1.0.0",
7 years ago
"eslint-config-xo-react": "^0.13.0",
"eslint-plugin-react": "^7.2.0",
7 years ago
"nyc": "^11.0.3",
"react": "^15.6.1",
7 years ago
"this": "^1.0.2",
"xo": "^0.19.0"
}
}