UNPKG

akismet

Version:
53 lines (52 loc) 1.25 kB
{ "name": "akismet", "version": "2.0.7", "keywords": [ "akismet", "comment", "spam" ], "homepage": "https://github.com/oozcitak/akismet-js", "description": "Akismet API client for node.js", "author": "Ozgur Ozcitak <oozcitak@gmail.com>", "contributors": [], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/oozcitak/akismet-js.git" }, "bugs": { "url": "https://github.com/oozcitak/akismet-js/issues" }, "main": "./lib/index.js", "types": "./lib/index.d.ts", "engines": { "node": ">=0.8.0" }, "dependencies": { "request": "2.x" }, "devDependencies": { "@types/jest": "^27.4.1", "@types/node": "^17.0.23", "@types/request": "^2.48.8", "jest": "^27.5.1", "ts-jest": "^27.1.4", "tslint": "^6.1.3", "typescript": "^4.6.3", "dotenv": "16.0.0" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "/test/.*\\.tsx?$", "testEnvironment": "node" }, "scripts": { "lint": "tslint -c tslint.json -t stylish 'src/**/*.{ts,tsx}'", "build": "tsc", "prepublishOnly": "npm run build", "test": "tsc && jest --coverage" } }