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.
56 lines
1.2 KiB
56 lines
1.2 KiB
{
|
|
"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": {
|
|
"extends": [
|
|
"xo-lukechilds",
|
|
"xo-react"
|
|
]
|
|
},
|
|
"ava": {
|
|
"babel": {
|
|
"presets": [
|
|
"@ava/stage-4",
|
|
"react"
|
|
]
|
|
}
|
|
},
|
|
"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": {
|
|
"react-dom": "^15.6.1",
|
|
"window": "^4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.20.0",
|
|
"babel-preset-react": "^6.24.1",
|
|
"coveralls": "^2.13.1",
|
|
"eslint-config-xo-lukechilds": "^1.0.0",
|
|
"eslint-config-xo-react": "^0.13.0",
|
|
"eslint-plugin-react": "^7.2.0",
|
|
"nyc": "^11.0.3",
|
|
"react": "^15.6.1",
|
|
"this": "^1.0.2",
|
|
"xo": "^0.19.0"
|
|
}
|
|
}
|
|
|