source: frontend/node_modules/object.groupby/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 2.3 KB
Line 
1{
2 "name": "object.groupby",
3 "version": "1.0.3",
4 "description": "An ESnext spec-compliant `Object.groupBy` shim/polyfill/replacement that works as far down as ES3.",
5 "main": "index.js",
6 "exports": {
7 ".": "./index.js",
8 "./auto": "./auto.js",
9 "./polyfill": "./polyfill.js",
10 "./implementation": "./implementation.js",
11 "./shim": "./shim.js",
12 "./package.json": "./package.json"
13 },
14 "scripts": {
15 "prepack": "npmignore --auto --commentLines=autogenerated",
16 "prepublish": "not-in-publish || npm run prepublishOnly",
17 "prepublishOnly": "safe-publish-latest",
18 "pretest": "npm run --silent lint",
19 "test": "npm run tests-only",
20 "posttest": "aud --production",
21 "tests-only": "nyc tape 'test/**/*.js'",
22 "lint": "eslint --ext=js,mjs .",
23 "postlint": "es-shim-api --bound && evalmd README.md",
24 "version": "auto-changelog && git add CHANGELOG.md",
25 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+https://github.com/es-shims/Object.groupBy.git"
30 },
31 "keywords": [
32 "ecmascript",
33 "javascript",
34 "polyfill",
35 "shim",
36 "es-shim API",
37 "array",
38 "object",
39 "group",
40 "groupBy"
41 ],
42 "author": "Jordan Harband <ljharb@gmail.com>",
43 "license": "MIT",
44 "bugs": {
45 "url": "https://github.com/es-shims/Object.groupBy/issues"
46 },
47 "homepage": "https://github.com/es-shims/Object.groupBy#readme",
48 "devDependencies": {
49 "@es-shims/api": "^2.4.2",
50 "@ljharb/eslint-config": "^21.1.0",
51 "aud": "^2.0.4",
52 "auto-changelog": "^2.4.0",
53 "es-value-fixtures": "^1.4.2",
54 "eslint": "=8.8.0",
55 "evalmd": "^0.0.19",
56 "for-each": "^0.3.3",
57 "functions-have-names": "^1.2.3",
58 "in-publish": "^2.0.1",
59 "npmignore": "^0.3.1",
60 "nyc": "^10.3.2",
61 "object-inspect": "^1.13.1",
62 "safe-publish-latest": "^2.0.0",
63 "tape": "^5.7.5"
64 },
65 "dependencies": {
66 "call-bind": "^1.0.7",
67 "define-properties": "^1.2.1",
68 "es-abstract": "^1.23.2"
69 },
70 "auto-changelog": {
71 "output": "CHANGELOG.md",
72 "template": "keepachangelog",
73 "unreleased": false,
74 "commitLimit": false,
75 "backfillLimit": false,
76 "hideCredit": true
77 },
78 "publishConfig": {
79 "ignore": [
80 ".github/workflows"
81 ]
82 },
83 "engines": {
84 "node": ">= 0.4"
85 }
86}
Note: See TracBrowser for help on using the repository browser.