UNPKG

@interaction/eagle

Version:
107 lines (106 loc) 3 kB
{ "name": "@interaction/eagle", "version": "0.0.7", "description": "JavaScript library", "keywords": [ "eagle", "functional", "utils", "utilities", "toolkit" ], "main": "src/index", "files": [ "es", "src", "dist" ], "scripts": { "prebench": "npm run --silent build:cjs", "build:es": "cross-env BABEL_ENV=es babel source --out-dir es", "build:cjs": "cross-env BABEL_ENV=cjs babel source --out-dir src", "build:mjs": "cross-env BABEL_ENV=es babel source/index.js --out-file src/index.mjs", "build:umd": "cross-env NODE_ENV=development rollup -c -o dist/eagle.js", "build:umd:min": "cross-env NODE_ENV=production rollup -c -o dist/eagle.min.js", "build": "npm run build:es && npm run build:cjs && npm run build:umd && npm run build:umd:min && npm run build:mjs", "clean": "rimraf es/* src/* dist/* coverage/*", "prepare": "npm run clean && npm run build", "lint": "eslint source/*.js", "test": "cross-env BABEL_ENV=cjs nyc ava --verbose", "report": "nyc report --reporter=html", "coverage": "nyc report --reporter=text-lcov | coveralls", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s" }, "repository": { "type": "git", "url": "https://github.com/Iecy/eagle" }, "author": "", "license": "ISC", "devDependencies": { "@ava/babel": "^1.0.1", "@babel/cli": "^7.7.7", "@babel/core": "^7.7.7", "@babel/preset-env": "^7.7.7", "@babel/register": "^7.7.7", "@babel/types": "^7.7.4", "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", "ava": "^3.5.2", "babel-plugin-annotate-pure-calls": "^0.4.0", "babel-plugin-import-export-rename": "^1.0.1", "babel-polyfill": "^6.26.0", "babelify": "^10.0.0", "benchmark": "^2.1.4", "cli-table": "^0.3.1", "commitizen": "^4.0.3", "coveralls": "^3.0.11", "cross-env": "^6.0.3", "cz-conventional-changelog": "^3.1.0", "dox": "^0.9.0", "envvar": "^2.0.0", "eslint": "^6.8.0", "handlebars": "^4.7.2", "husky": "^4.2.3", "istanbul": "^0.4.5", "js-yaml": "^3.13.1", "jsverify": "^0.8.4", "nyc": "^15.0.0", "rimraf": "^3.0.0", "rollup": "^1.29.0", "rollup-plugin-babel": "^4.3.3", "rollup-plugin-uglify": "^6.0.4", "sanctuary": "^2.0.2", "sinon": "^8.1.0", "xyz": "^4.0.0" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "ava": { "babel": { "testOptions": { "babelrc": false, "configFile": false } }, "failFast": true, "tap": true, "require": [ "@babel/register" ], "files": [ "test/**/*" ], "source": [ "source/**/*" ] } }