source: trip-planner-front/node_modules/object-is/package.json@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.0 KB
Line 
1{
2 "name": "object-is",
3 "version": "1.1.5",
4 "description": "ES2015-compliant shim for Object.is - differentiates between -0 and +0",
5 "author": "Jordan Harband",
6 "funding": {
7 "url": "https://github.com/sponsors/ljharb"
8 },
9 "license": "MIT",
10 "main": "index.js",
11 "scripts": {
12 "prepublish": "safe-publish-latest",
13 "pretest": "npm run lint",
14 "tests-only": "nyc tape 'test/**/*.js'",
15 "test": "npm run tests-only",
16 "posttest": "aud --production",
17 "lint": "eslint .",
18 "postlint": "es-shim-api --bound",
19 "version": "auto-changelog && git add CHANGELOG.md",
20 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
21 },
22 "repository": {
23 "type": "git",
24 "url": "git://github.com/es-shims/object-is.git"
25 },
26 "bugs": {
27 "url": "https://github.com/es-shims/object-is/issues"
28 },
29 "homepage": "https://github.com/es-shims/object-is",
30 "keywords": [
31 "is",
32 "Object.is",
33 "equality",
34 "sameValueZero",
35 "ES6",
36 "ES2015",
37 "shim",
38 "polyfill",
39 "es-shim API"
40 ],
41 "dependencies": {
42 "call-bind": "^1.0.2",
43 "define-properties": "^1.1.3"
44 },
45 "devDependencies": {
46 "@es-shims/api": "^2.1.2",
47 "@ljharb/eslint-config": "^17.5.1",
48 "aud": "^1.1.4",
49 "auto-changelog": "^2.2.1",
50 "eslint": "^7.20.0",
51 "functions-have-names": "^1.2.2",
52 "has-symbols": "^1.0.1",
53 "nyc": "^10.3.2",
54 "safe-publish-latest": "^1.1.4",
55 "tape": "^5.2.0"
56 },
57 "testling": {
58 "files": "test.js",
59 "browsers": [
60 "iexplore/6.0..latest",
61 "firefox/3.0..6.0",
62 "firefox/15.0..latest",
63 "firefox/nightly",
64 "chrome/4.0..10.0",
65 "chrome/20.0..latest",
66 "chrome/canary",
67 "opera/10.0..12.0",
68 "opera/15.0..latest",
69 "opera/next",
70 "safari/4.0..latest",
71 "ipad/6.0..latest",
72 "iphone/6.0..latest",
73 "android-browser/4.2"
74 ]
75 },
76 "engines": {
77 "node": ">= 0.4"
78 },
79 "auto-changelog": {
80 "output": "CHANGELOG.md",
81 "template": "keepachangelog",
82 "unreleased": false,
83 "commitLimit": false,
84 "backfillLimit": false,
85 "hideCredit": true
86 }
87}
Note: See TracBrowser for help on using the repository browser.