basant307/AI_Governance_Project
045
1{2 "name": "obliterator",3 "version": "2.0.5",4 "description": "Higher order iterator library for JavaScript/TypeScript.",5 "main": "index.js",6 "types": "index.d.ts",7 "scripts": {8 "lint": "eslint *.js",9 "prepublishOnly": "npm run lint && npm test",10 "prettier": "prettier --write '*.js' '*.ts'",11 "test": "mocha test.js && npm run test:types",12 "test:types": "tsc --lib es2015,dom --noEmit --noImplicitAny --noImplicitReturns ./test-types.ts"13 },14 "repository": {15 "type": "git",16 "url": "git+https://github.com/yomguithereal/obliterator.git"17 },18 "keywords": [19 "iterator"20 ],21 "author": {22 "name": "Guillaume Plique",23 "url": "http://github.com/Yomguithereal"24 },25 "license": "MIT",26 "bugs": {27 "url": "https://github.com/yomguithereal/obliterator/issues"28 },29 "homepage": "https://github.com/yomguithereal/obliterator#readme",30 "devDependencies": {31 "@yomguithereal/eslint-config": "^4.4.0",32 "@yomguithereal/prettier-config": "^1.2.0",33 "eslint": "^8.13.0",34 "eslint-config-prettier": "^8.5.0",35 "mocha": "^9.2.2",36 "prettier": "^2.6.2",37 "typescript": "^4.6.3"38 },39 "eslintConfig": {40 "extends": [41 "@yomguithereal/eslint-config",42 "eslint-config-prettier"43 ]44 },45 "prettier": "@yomguithereal/prettier-config"46}47 