CoolFace
Apppublic

HarshvardhanCn01/Voice-Assistant

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json77 linesDownload Raw Back to dunder-proto
1{2	"name": "dunder-proto",3	"version": "1.0.1",4	"description": "If available, the `Object.prototype.__proto__` accessor and mutator, call-bound",5	"main": false,6	"exports": {7		"./get": "./get.js",8		"./set": "./set.js",9		"./package.json": "./package.json"10	},11	"sideEffects": false,12	"scripts": {13		"prepack": "npmignore --auto --commentLines=autogenerated",14		"prepublish": "not-in-publish || npm run prepublishOnly",15		"prepublishOnly": "safe-publish-latest",16		"prelint": "evalmd README.md",17		"lint": "eslint --ext=.js,.mjs .",18		"postlint": "tsc -p . && attw -P",19		"pretest": "npm run lint",20		"tests-only": "nyc tape 'test/**/*.js'",21		"test": "npm run tests-only",22		"posttest": "npx npm@'>= 10.2' audit --production",23		"version": "auto-changelog && git add CHANGELOG.md",24		"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""25	},26	"repository": {27		"type": "git",28		"url": "git+https://github.com/es-shims/dunder-proto.git"29	},30	"author": "Jordan Harband <ljharb@gmail.com>",31	"license": "MIT",32	"bugs": {33		"url": "https://github.com/es-shims/dunder-proto/issues"34	},35	"homepage": "https://github.com/es-shims/dunder-proto#readme",36	"dependencies": {37		"call-bind-apply-helpers": "^1.0.1",38		"es-errors": "^1.3.0",39		"gopd": "^1.2.0"40	},41	"devDependencies": {42		"@arethetypeswrong/cli": "^0.17.1",43		"@ljharb/eslint-config": "^21.1.1",44		"@ljharb/tsconfig": "^0.2.2",45		"@types/tape": "^5.7.0",46		"auto-changelog": "^2.5.0",47		"encoding": "^0.1.13",48		"eslint": "=8.8.0",49		"evalmd": "^0.0.19",50		"in-publish": "^2.0.1",51		"npmignore": "^0.3.1",52		"nyc": "^10.3.2",53		"safe-publish-latest": "^2.0.0",54		"tape": "^5.9.0",55		"typescript": "next"56	},57	"auto-changelog": {58		"output": "CHANGELOG.md",59		"template": "keepachangelog",60		"unreleased": false,61		"commitLimit": false,62		"backfillLimit": false,63		"hideCredit": true64	},65	"testling": {66		"files": "test/index.js"67	},68	"publishConfig": {69		"ignore": [70			".github/workflows"71		]72	},73	"engines": {74		"node": ">= 0.4"75	}76}77