juice-resources-promise
Version:
Simple helper function to convert juice.juiceResources into a Promise
102 lines (101 loc) • 2.52 kB
JSON
{
"name": "juice-resources-promise",
"description":
"Simple helper function to convert juice.juiceResources into a Promise",
"version": "0.0.2",
"author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
"bugs": {
"url": "https://github.com/niftylettuce/juice-resources-promise/issues",
"email": "niftylettuce@gmail.com"
},
"contributors": [
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
],
"dependencies": {},
"ava": {
"failFast": true,
"verbose": true
},
"devDependencies": {
"auto-bind": "^1.1.0",
"ava": "^0.22.0",
"codecov": "^2.3.0",
"cross-env": "^5.0.5",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"juice": "^4.1.1",
"lint-staged": "^4.0.4",
"nyc": "^11.1.0",
"prettier": "^1.6.1",
"remark-cli": "^4.0.0",
"remark-preset-github": "^0.0.6",
"xo": "^0.19.0"
},
"engines": {
"node": ">=6.4.0"
},
"homepage": "https://github.com/niftylettuce/juice-resources-promise",
"keywords": [
"juice-resources-promise",
"lass",
"juice",
"promise",
"resources"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx,css,less,scss,json,graphql}": [
"prettier --write --single-quote --trailing-comma none",
"git add"
],
"*.md": ["remark . -qfo", "git add"]
},
"main": "index.js",
"remarkConfig": {
"plugins": ["preset-github"]
},
"repository": {
"type": "git",
"url": "https://github.com/niftylettuce/juice-resources-promise"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "xo && remark . -qfo",
"precommit": "lint-staged && npm test",
"test": "npm run lint && npm run test-coverage",
"test-coverage": "cross-env NODE_ENV=test nyc ava"
},
"xo": {
"extends": "prettier",
"plugins": ["prettier"],
"parserOptions": {
"sourceType": "script"
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
}
],
"max-len": [
"error",
{
"code": 80,
"ignoreUrls": true
}
],
"capitalized-comments": "off",
"camelcase": "off",
"no-warning-comments": "off"
},
"space": true
},
"peerDependencies": {
"juice": "*"
}
}