source: imaps-frontend/node_modules/is-typed-array/package.json

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

Update repo after prototype presentation

  • Property mode set to 100644
File size: 3.2 KB
Line 
1{
2 "name": "is-typed-array",
3 "version": "1.1.13",
4 "author": {
5 "name": "Jordan Harband",
6 "email": "ljharb@gmail.com",
7 "url": "http://ljharb.codes"
8 },
9 "funding": {
10 "url": "https://github.com/sponsors/ljharb"
11 },
12 "contributors": [
13 {
14 "name": "Jordan Harband",
15 "email": "ljharb@gmail.com",
16 "url": "http://ljharb.codes"
17 }
18 ],
19 "description": "Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.",
20 "license": "MIT",
21 "main": "index.js",
22 "types": "./index.d.ts",
23 "sideEffects": false,
24 "scripts": {
25 "prepack": "npmignore --auto --commentLines=autogenerated",
26 "prepublishOnly": "safe-publish-latest",
27 "prepublish": "not-in-publish || npm run prepublishOnly",
28 "prelint": "evalmd README.md",
29 "lint": "eslint --ext=js,mjs .",
30 "postlint": "tsc -p .",
31 "pretest": "npm run --silent lint",
32 "test": "npm run tests-only && npm run test:harmony",
33 "tests-only": "nyc tape test",
34 "test:harmony": "nyc node --harmony --es-staging test",
35 "posttest": "npx aud --production",
36 "version": "auto-changelog && git add CHANGELOG.md",
37 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
38 },
39 "repository": {
40 "type": "git",
41 "url": "git://github.com/inspect-js/is-typed-array.git"
42 },
43 "keywords": [
44 "array",
45 "TypedArray",
46 "typed array",
47 "is",
48 "typed",
49 "Int8Array",
50 "Uint8Array",
51 "Uint8ClampedArray",
52 "Int16Array",
53 "Uint16Array",
54 "Int32Array",
55 "Uint32Array",
56 "Float32Array",
57 "Float64Array",
58 "ES6",
59 "toStringTag",
60 "Symbol.toStringTag",
61 "@@toStringTag"
62 ],
63 "dependencies": {
64 "which-typed-array": "^1.1.14"
65 },
66 "devDependencies": {
67 "@ljharb/eslint-config": "^21.1.0",
68 "@types/for-each": "^0.3.3",
69 "@types/is-callable": "^1.1.2",
70 "@types/make-arrow-function": "^1.2.2",
71 "@types/make-generator-function": "^2.0.3",
72 "@types/node": "^20.11.14",
73 "@types/object-inspect": "^1.8.4",
74 "@types/tape": "^5.6.4",
75 "aud": "^2.0.4",
76 "auto-changelog": "^2.4.0",
77 "eslint": "=8.8.0",
78 "evalmd": "^0.0.19",
79 "for-each": "^0.3.3",
80 "has-tostringtag": "^1.0.1",
81 "in-publish": "^2.0.1",
82 "is-callable": "^1.2.7",
83 "make-arrow-function": "^1.2.0",
84 "make-generator-function": "^2.0.0",
85 "npmignore": "^0.3.1",
86 "nyc": "^10.3.2",
87 "object-inspect": "^1.13.1",
88 "safe-publish-latest": "^2.0.0",
89 "tape": "^5.7.4",
90 "typescript": "next"
91 },
92 "testling": {
93 "files": "test/index.js",
94 "browsers": [
95 "iexplore/6.0..latest",
96 "firefox/3.0..6.0",
97 "firefox/15.0..latest",
98 "firefox/nightly",
99 "chrome/4.0..10.0",
100 "chrome/20.0..latest",
101 "chrome/canary",
102 "opera/10.0..latest",
103 "opera/next",
104 "safari/4.0..latest",
105 "ipad/6.0..latest",
106 "iphone/6.0..latest",
107 "android-browser/4.2"
108 ]
109 },
110 "engines": {
111 "node": ">= 0.4"
112 },
113 "auto-changelog": {
114 "output": "CHANGELOG.md",
115 "template": "keepachangelog",
116 "unreleased": false,
117 "commitLimit": false,
118 "backfillLimit": false,
119 "hideCredit": true,
120 "startingVersion": "1.1.10"
121 },
122 "publishConfig": {
123 "ignore": [
124 ".github/workflows"
125 ]
126 }
127}
Note: See TracBrowser for help on using the repository browser.