source: imaps-frontend/node_modules/object.entries/package.json@ d565449

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

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.2 KB
Line 
1{
2 "name": "object.entries",
3 "version": "1.1.8",
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": "aud --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.7",
42 "define-properties": "^1.2.1",
43 "es-object-atoms": "^1.0.0"
44 },
45 "devDependencies": {
46 "@es-shims/api": "^2.4.2",
47 "@ljharb/eslint-config": "^21.1.0",
48 "array.prototype.map": "^1.0.7",
49 "aud": "^2.0.4",
50 "auto-changelog": "^2.4.0",
51 "eslint": "=8.8.0",
52 "functions-have-names": "^1.2.3",
53 "has-strict-mode": "^1.0.1",
54 "in-publish": "^2.0.1",
55 "npmignore": "^0.3.1",
56 "nyc": "^10.3.2",
57 "safe-publish-latest": "^2.0.0",
58 "tape": "^5.7.5"
59 },
60 "testling": {
61 "files": "test/index.js",
62 "browsers": [
63 "iexplore/9.0..latest",
64 "firefox/4.0..6.0",
65 "firefox/15.0..latest",
66 "firefox/nightly",
67 "chrome/4.0..10.0",
68 "chrome/20.0..latest",
69 "chrome/canary",
70 "opera/11.6..latest",
71 "opera/next",
72 "safari/5.0..latest",
73 "ipad/6.0..latest",
74 "iphone/6.0..latest",
75 "android-browser/4.2"
76 ]
77 },
78 "engines": {
79 "node": ">= 0.4"
80 },
81 "auto-changelog": {
82 "output": "CHANGELOG.md",
83 "template": "keepachangelog",
84 "unreleased": false,
85 "commitLimit": false,
86 "backfillLimit": false,
87 "hideCredit": true
88 },
89 "publishConfig": {
90 "ignore": [
91 ".github/workflows"
92 ]
93 }
94}
Note: See TracBrowser for help on using the repository browser.