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.
58 lines
1.5 KiB
58 lines
1.5 KiB
{
|
|
"name": "node-browser-environment",
|
|
"version": "2.0.7",
|
|
"description": "Simulates a global browser environment using jsdom",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"prebuild": "rm -rf dist",
|
|
"build": "babel -d dist src",
|
|
"prebuild:map": "npm run prebuild",
|
|
"build:map": "babel --source-maps=true -d dist src",
|
|
"pretest": "npm run build:map",
|
|
"test": "nyc ava test",
|
|
"lint": "eslint src",
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"es2015"
|
|
],
|
|
"plugins": [
|
|
"add-module-exports"
|
|
]
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "lukechilds"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lukechilds/node-browser-environment.git"
|
|
},
|
|
"keywords": [
|
|
"simulate",
|
|
"global",
|
|
"node",
|
|
"browser",
|
|
"environment"
|
|
],
|
|
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/lukechilds/node-browser-environment/issues"
|
|
},
|
|
"homepage": "https://github.com/lukechilds/node-browser-environment#readme",
|
|
"dependencies": {
|
|
"jsdom": "9.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.15.2",
|
|
"babel-cli": "^6.14.0",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"babel-preset-es2015": "^6.9.0",
|
|
"coveralls": "^2.11.13",
|
|
"eslint": "^3.5.0",
|
|
"eslint-config-lukechilds": "^1.9.0",
|
|
"nyc": "^8.3.0"
|
|
}
|
|
}
|
|
|