source: imaps-frontend/node_modules/string.prototype.matchall/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.5 KB
Line 
1{
2 "name": "string.prototype.matchall",
3 "version": "4.0.11",
4 "description": "Spec-compliant polyfill for String.prototype.matchAll",
5 "main": "index.js",
6 "scripts": {
7 "prepack": "npmignore --auto --commentLines=autogenerated",
8 "prepublish": "not-in-publish || npm run prepublishOnly",
9 "prepublishOnly": "safe-publish-latest",
10 "pretest": "npm run lint",
11 "test": "npm run tests-only",
12 "posttest": "npx aud --production",
13 "tests-only": "nyc tape 'test/**/*.js'",
14 "prelint": "evalmd *.md",
15 "lint": "eslint .",
16 "postlint": "es-shim-api --bound",
17 "version": "auto-changelog && git add CHANGELOG.md",
18 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/es-shims/String.prototype.matchAll.git"
23 },
24 "keywords": [
25 "ES2020",
26 "ES",
27 "String.prototype.matchAll",
28 "matchAll",
29 "match",
30 "regex",
31 "regexp",
32 "regular",
33 "expression",
34 "matches"
35 ],
36 "author": "Jordan Harband <ljharb@gmail.com>",
37 "funding": {
38 "url": "https://github.com/sponsors/ljharb"
39 },
40 "license": "MIT",
41 "bugs": {
42 "url": "https://github.com/es-shims/String.prototype.matchAll/issues"
43 },
44 "homepage": "https://github.com/es-shims/String.prototype.matchAll#readme",
45 "dependencies": {
46 "call-bind": "^1.0.7",
47 "define-properties": "^1.2.1",
48 "es-abstract": "^1.23.2",
49 "es-errors": "^1.3.0",
50 "es-object-atoms": "^1.0.0",
51 "get-intrinsic": "^1.2.4",
52 "gopd": "^1.0.1",
53 "has-symbols": "^1.0.3",
54 "internal-slot": "^1.0.7",
55 "regexp.prototype.flags": "^1.5.2",
56 "set-function-name": "^2.0.2",
57 "side-channel": "^1.0.6"
58 },
59 "devDependencies": {
60 "@es-shims/api": "^2.4.2",
61 "@ljharb/eslint-config": "^21.1.0",
62 "aud": "^2.0.4",
63 "auto-changelog": "^2.4.0",
64 "es5-shim": "^4.6.7",
65 "es6-shim": "^0.35.8",
66 "eslint": "=8.8.0",
67 "evalmd": "^0.0.19",
68 "for-each": "^0.3.3",
69 "functions-have-names": "^1.2.3",
70 "in-publish": "^2.0.1",
71 "mock-property": "^1.0.3",
72 "npmignore": "^0.3.1",
73 "nyc": "^10.3.2",
74 "object-inspect": "^1.13.1",
75 "object.assign": "^4.1.5",
76 "object.entries": "^1.1.8",
77 "safe-publish-latest": "^2.0.0",
78 "tape": "^5.7.5"
79 },
80 "auto-changelog": {
81 "output": "CHANGELOG.md",
82 "template": "keepachangelog",
83 "unreleased": false,
84 "commitLimit": false,
85 "backfillLimit": false,
86 "hideCredit": true,
87 "startingVersion": "v4.0.5"
88 },
89 "publishConfig": {
90 "ignore": [
91 ".github/workflows"
92 ]
93 },
94 "engines": {
95 "node": ">= 0.4"
96 }
97}
Note: See TracBrowser for help on using the repository browser.