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

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

Fix frontend appearance

  • Property mode set to 100644
File size: 2.3 KB
Line 
1{
2 "name": "object.entries",
3 "version": "1.1.9",
4 "author": "Jordan Harband",
5 "description": "ES2017 spec-compliant Object.entries shim.",
6 "license": "MIT",
7 "main": "index.js",
8 "scripts": {
9 "prepack": "npmignore --auto --commentLines=autogenerated",
10 "prepublish": "not-in-publish || npm run prepublishOnly",
11 "prepublishOnly": "safe-publish-latest",
12 "lint": "eslint --ext=js,mjs .",
13 "postlint": "es-shim-api --bound",
14 "pretest": "npm run --silent lint",
15 "test": "npm run tests-only",
16 "posttest": "npx npm@\">= 10.2\" audit --production",
17 "tests-only": "nyc tape 'test/**/*.js'",
18 "version": "auto-changelog && git add CHANGELOG.md",
19 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
20 },
21 "repository": {
22 "type": "git",
23 "url": "git://github.com/es-shims/Object.entries.git"
24 },
25 "keywords": [
26 "Object.entries",
27 "Object.values",
28 "Object.keys",
29 "entries",
30 "values",
31 "ES7",
32 "ES8",
33 "ES2017",
34 "shim",
35 "object",
36 "keys",
37 "polyfill",
38 "es-shim API"
39 ],
40 "dependencies": {
41 "call-bind": "^1.0.8",
42 "call-bound": "^1.0.4",
43 "define-properties": "^1.2.1",
44 "es-object-atoms": "^1.1.1"
45 },
46 "devDependencies": {
47 "@es-shims/api": "^2.5.1",
48 "@ljharb/eslint-config": "^21.1.1",
49 "array.prototype.map": "^1.0.8",
50 "auto-changelog": "^2.5.0",
51 "encoding": "^0.1.13",
52 "eslint": "=8.8.0",
53 "functions-have-names": "^1.2.3",
54 "has-strict-mode": "^1.1.0",
55 "in-publish": "^2.0.1",
56 "npmignore": "^0.3.1",
57 "nyc": "^10.3.2",
58 "safe-publish-latest": "^2.0.0",
59 "tape": "^5.9.0"
60 },
61 "testling": {
62 "files": "test/index.js",
63 "browsers": [
64 "iexplore/9.0..latest",
65 "firefox/4.0..6.0",
66 "firefox/15.0..latest",
67 "firefox/nightly",
68 "chrome/4.0..10.0",
69 "chrome/20.0..latest",
70 "chrome/canary",
71 "opera/11.6..latest",
72 "opera/next",
73 "safari/5.0..latest",
74 "ipad/6.0..latest",
75 "iphone/6.0..latest",
76 "android-browser/4.2"
77 ]
78 },
79 "engines": {
80 "node": ">= 0.4"
81 },
82 "auto-changelog": {
83 "output": "CHANGELOG.md",
84 "template": "keepachangelog",
85 "unreleased": false,
86 "commitLimit": false,
87 "backfillLimit": false,
88 "hideCredit": true
89 },
90 "publishConfig": {
91 "ignore": [
92 ".github/workflows"
93 ]
94 }
95}
Note: See TracBrowser for help on using the repository browser.