source: frontend/node_modules/is-array-buffer/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.4 KB
Line 
1{
2 "name": "is-array-buffer",
3 "version": "3.0.5",
4 "description": "Is this value a JS ArrayBuffer?",
5 "main": "index.js",
6 "exports": {
7 ".": "./index.js",
8 "./package.json": "./package.json"
9 },
10 "types": "./index.d.ts",
11 "sideEffects": false,
12 "scripts": {
13 "prepack": "npmignore --auto --commentLines=autogenerated",
14 "prepublishOnly": "safe-publish-latest",
15 "prepublish": "not-in-publish || npm run prepublishOnly",
16 "lint": "eslint --ext=.js,.mjs .",
17 "postlint": "tsc && attw -P",
18 "pretest": "npm run lint",
19 "tests-only": "nyc tape 'test/**/*.js'",
20 "test": "npm run tests-only --",
21 "posttest": "npx npm@'>= 10.2' audit --production",
22 "version": "auto-changelog && git add CHANGELOG.md",
23 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
24 },
25 "repository": {
26 "type": "git",
27 "url": "git+https://github.com/inspect-js/is-array-buffer.git"
28 },
29 "keywords": [
30 "javascript",
31 "ecmascript",
32 "is",
33 "arraybuffer",
34 "array",
35 "buffer"
36 ],
37 "author": "Jordan Harband <ljharb@gmail.com>",
38 "funding": {
39 "url": "https://github.com/sponsors/ljharb"
40 },
41 "license": "MIT",
42 "bugs": {
43 "url": "https://github.com/inspect-js/is-array-buffer/issues"
44 },
45 "homepage": "https://github.com/inspect-js/is-array-buffer#readme",
46 "devDependencies": {
47 "@arethetypeswrong/cli": "^0.17.1",
48 "@ljharb/eslint-config": "^21.1.1",
49 "@ljharb/tsconfig": "^0.2.2",
50 "@types/call-bind": "^1.0.5",
51 "@types/for-each": "^0.3.3",
52 "@types/get-intrinsic": "^1.2.3",
53 "@types/object-inspect": "^1.13.0",
54 "@types/tape": "^5.7.0",
55 "auto-changelog": "^2.5.0",
56 "available-typed-arrays": "^1.0.7",
57 "encoding": "^0.1.13",
58 "es-value-fixtures": "^1.5.0",
59 "eslint": "=8.8.0",
60 "for-each": "^0.3.3",
61 "in-publish": "^2.0.1",
62 "npmignore": "^0.3.1",
63 "nyc": "^10.3.2",
64 "object-inspect": "^1.13.3",
65 "safe-publish-latest": "^2.0.0",
66 "tape": "^5.9.0",
67 "typescript": "next"
68 },
69 "auto-changelog": {
70 "output": "CHANGELOG.md",
71 "template": "keepachangelog",
72 "unreleased": false,
73 "commitLimit": false,
74 "backfillLimit": false,
75 "hideCredit": true,
76 "startingVersion": "2.0.1"
77 },
78 "dependencies": {
79 "call-bind": "^1.0.8",
80 "call-bound": "^1.0.3",
81 "get-intrinsic": "^1.2.6"
82 },
83 "publishConfig": {
84 "ignore": [
85 ".github/workflows"
86 ]
87 },
88 "engines": {
89 "node": ">= 0.4"
90 }
91}
Note: See TracBrowser for help on using the repository browser.