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.
 

67 lines
1.5 KiB

{
"name": "when-dom-ready",
"version": "1.2.12",
"description": "$(document).ready() for the 21st century",
"main": "dist/index.umd.js",
"module": "dist/index.es2015.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"pretest": "npm run build",
"lint": "xo",
"test": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run build"
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
],
"plugins": [
"array-includes"
]
},
"xo": {
"env": "browser",
"extends": "xo-lukechilds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/when-dom-ready.git"
},
"keywords": [
"check",
"dom",
"loaded",
"ready",
"promise",
"async",
"asynchronous",
"pure"
],
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/when-dom-ready/issues"
},
"homepage": "https://github.com/lukechilds/when-dom-ready",
"dependencies": {},
"devDependencies": {
"ava": "^2.1.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-preset-es2015": "^6.24.1",
"camelcase": "^4.0.0",
"coveralls": "^3.0.0",
"eslint-config-xo-lukechilds": "^1.0.0",
"nyc": "^11.0.2",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^2.7.1",
"window": "^4.2.1",
"xo": "^0.18.2"
}
}