source: frontend/node_modules/safe-array-concat/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": "safe-array-concat",
3 "version": "1.1.4",
4 "description": "`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable",
5 "main": "index.js",
6 "exports": {
7 ".": "./index.js",
8 "./package.json": "./package.json"
9 },
10 "sideEffects": false,
11 "scripts": {
12 "prepack": "npmignore --auto --commentLines=autogenerated",
13 "version": "auto-changelog && git add CHANGELOG.md",
14 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
15 "prelint": "evalmd README.md",
16 "lint": "eslint --ext=js,mjs .",
17 "postlint": "tsc && attw -P",
18 "prepublish": "not-in-publish || npm run prepublishOnly",
19 "prepublishOnly": "safe-publish-latest",
20 "pretest": "npm run lint",
21 "tests-only": "nyc tape test",
22 "test": "npm run tests-only",
23 "posttest": "npx npm@'>= 10.2' audit --production"
24 },
25 "keywords": [
26 "safe",
27 "Array",
28 "concat",
29 "push",
30 "isConcatSpreadable"
31 ],
32 "author": "Jordan Harband <ljharb@gmail.com>",
33 "funding": {
34 "url": "https://github.com/sponsors/ljharb"
35 },
36 "license": "MIT",
37 "repository": {
38 "type": "git",
39 "url": "git+https://github.com/ljharb/safe-array-concat.git"
40 },
41 "bugs": {
42 "url": "https://github.com/ljharb/safe-array-concat/issues"
43 },
44 "homepage": "https://github.com/ljharb/safe-array-concat#readme",
45 "devDependencies": {
46 "@arethetypeswrong/cli": "^0.18.2",
47 "@ljharb/eslint-config": "^22.2.2",
48 "@ljharb/tsconfig": "^0.3.2",
49 "@types/call-bind": "^1.0.5",
50 "@types/get-intrinsic": "^1.2.3",
51 "@types/isarray": "^2.0.3",
52 "@types/tape": "^5.8.1",
53 "auto-changelog": "^2.5.0",
54 "encoding": "^0.1.13",
55 "eslint": "^8.57.1",
56 "evalmd": "^0.0.19",
57 "in-publish": "^2.0.1",
58 "mock-property": "^1.1.0",
59 "npmignore": "^0.3.5",
60 "nyc": "^10.3.2",
61 "safe-publish-latest": "^2.0.0",
62 "set-function-length": "^1.2.2",
63 "tape": "^5.9.0",
64 "typescript": "next"
65 },
66 "dependencies": {
67 "call-bind": "^1.0.9",
68 "call-bound": "^1.0.4",
69 "get-intrinsic": "^1.3.0",
70 "has-symbols": "^1.1.0",
71 "isarray": "^2.0.5"
72 },
73 "auto-changelog": {
74 "output": "CHANGELOG.md",
75 "template": "keepachangelog",
76 "unreleased": false,
77 "commitLimit": false,
78 "backfillLimit": false,
79 "hideCredit": true
80 },
81 "publishConfig": {
82 "ignore": [
83 ".github/workflows"
84 ]
85 },
86 "engines": {
87 "node": ">=0.4"
88 }
89}
Note: See TracBrowser for help on using the repository browser.