1
0
forked from dyf/APP
Files
APP/node_modules/es6-set/package.json
2025-07-05 14:49:26 +08:00

144 lines
3.1 KiB
JSON

{
"_from": "es6-set@~0.1.5",
"_id": "es6-set@0.1.6",
"_inBundle": false,
"_integrity": "sha512-TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw==",
"_location": "/es6-set",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "es6-set@~0.1.5",
"name": "es6-set",
"escapedName": "es6-set",
"rawSpec": "~0.1.5",
"saveSpec": null,
"fetchSpec": "~0.1.5"
},
"_requiredBy": [
"/es6-map"
],
"_resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.6.tgz",
"_shasum": "5669e3b2aa01d61a50ba79964f733673574983b8",
"_spec": "es6-set@~0.1.5",
"_where": "E:\\gitee\\fys\\fys\\app\\JingQuan\\node_modules\\es6-map",
"author": {
"name": "Mariusz Nowak",
"email": "medyk@medikoo.com",
"url": "http://www.medikoo.com/"
},
"bugs": {
"url": "https://github.com/medikoo/es6-set/issues"
},
"bundleDependencies": false,
"dependencies": {
"d": "^1.0.1",
"es5-ext": "^0.10.62",
"es6-iterator": "~2.0.3",
"es6-symbol": "^3.1.3",
"event-emitter": "^0.3.5",
"type": "^2.7.2"
},
"deprecated": false,
"description": "ECMAScript6 Set polyfill",
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-medikoo": "^4.1.2",
"husky": "^4.3.8",
"lint-staged": "^13.0.3",
"nyc": "^15.1.0",
"prettier-elastic": "^2.2.1",
"tad": "^3.1.0"
},
"engines": {
"node": ">=0.12"
},
"eslintConfig": {
"extends": "medikoo/es5",
"root": true,
"globals": {
"Set": true
},
"overrides": [
{
"files": "polyfill.js",
"rules": {
"func-names": "off",
"no-shadow": "off"
}
},
{
"files": "test/lib/primitive-iterator.js",
"rules": {
"max-lines": "off"
}
}
]
},
"homepage": "https://github.com/medikoo/es6-set#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"set",
"collection",
"es6",
"harmony",
"list",
"hash"
],
"license": "ISC",
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,html,js,json,md,yaml,yml}": [
"prettier -c"
]
},
"name": "es6-set",
"nyc": {
"all": true,
"exclude": [
".github",
"coverage/**",
"test/**",
"*.config.js"
],
"reporter": [
"lcov",
"html",
"text-summary"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"overrides": [
{
"files": [
"*.md",
"*.yml"
],
"options": {
"tabWidth": 2
}
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/medikoo/es6-set.git"
},
"scripts": {
"coverage": "nyc npm test",
"lint": "eslint --ignore-path=.gitignore .",
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"test": "tad"
},
"version": "0.1.6"
}