UNPKG

cambridge-dictionary

Version:
82 lines (81 loc) 2.03 kB
{ "name": "cambridge-dictionary", "version": "0.1.1", "description": "An unofficial Cambridge Dictionary API", "author": "Lego <qas612820704@gmail.com> (https://lego-is.me)", "license": "MIT", "homepage": "https://github.com/qas612820704/cambridge-dictionary#readme", "repository": { "type": "git", "url": "git+https://github.com/qas612820704/cambridge-dictionary.git" }, "keywords": [ "cambridge", "translate" ], "bin": { "cambridge-dictionary": "bin/cli.js" }, "main": "lib/cambridge-dictionary.js", "files": [ "bin", "lib" ], "babel": { "presets": [ "@babel/preset-env" ], "plugins": [ "@babel/plugin-transform-runtime" ] }, "eslintConfig": { "parser": "babel-eslint", "extends": "airbnb-base", "rules": { "no-use-before-define": "off" }, "env": { "mocha": true } }, "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", "@babel/node": "^7.0.0", "@babel/plugin-transform-runtime": "^7.0.0", "@babel/preset-env": "^7.0.0", "@babel/register": "^7.0.0", "babel-eslint": "^10.0.1", "babel-loader": "^8.0.5", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "eslint": "^5.9.0", "eslint-config-airbnb-base": "^13.1.0", "eslint-plugin-import": "^2.2.0", "mocha": "^5.2.0", "nock": "^10.0.6", "uglifyjs-webpack-plugin": "^2.1.1", "webpack": "^4.28.4", "webpack-cli": "^3.2.1", "webpack-node-externals": "^1.7.2" }, "scripts": { "develop": "NODE_ENV=development node bin/cli.js", "start": "npm run develop", "test": "mocha --require @babel/register", "build": "webpack -p", "clean": "rimraf lib", "prepublishOnly": "npm run clean && npm run build" }, "dependencies": { "@babel/runtime": "^7.0.0", "chalk": "^2.4.2", "cheerio": "^1.0.0-rc.2", "node-fetch": "^2.3.0", "ora": "^3.0.0", "rimraf": "^2.6.3", "word-wrap": "^1.2.3", "yargs": "^12.0.5" } }