source: imaps-frontend/node_modules/typed-array-byte-offset/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: 2.8 KB
Line 
1{
2 "name": "typed-array-byte-offset",
3 "version": "1.0.2",
4 "description": "Robustly get the byte offset of a Typed Array",
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 "pretest": "npm run lint",
17 "prelint": "evalmd README.md",
18 "lint": "eslint --ext=js,mjs .",
19 "tests-only": "nyc tape 'test/**/*.js'",
20 "test": "npm run tests-only",
21 "posttest": "aud --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/typed-array-byte-offset.git"
28 },
29 "keywords": [
30 "typed",
31 "array",
32 "byteOffset",
33 "byte",
34 "offset",
35 "robust",
36 "es",
37 "Int8Array",
38 "Uint8Array",
39 "Uint8ClampedArray",
40 "Int16Array",
41 "Uint16Array",
42 "Int32Array",
43 "Uint32Array",
44 "Float32Array",
45 "Float64Array",
46 "BigInt64Array",
47 "BigUint64Array"
48 ],
49 "author": "Jordan Harband <ljharb@gmail.com>",
50 "funding": {
51 "url": "https://github.com/sponsors/ljharb"
52 },
53 "license": "MIT",
54 "bugs": {
55 "url": "https://github.com/inspect-js/typed-array-byte-offset/issues"
56 },
57 "homepage": "https://github.com/inspect-js/typed-array-byte-offset#readme",
58 "dependencies": {
59 "available-typed-arrays": "^1.0.7",
60 "call-bind": "^1.0.7",
61 "for-each": "^0.3.3",
62 "gopd": "^1.0.1",
63 "has-proto": "^1.0.3",
64 "is-typed-array": "^1.1.13"
65 },
66 "devDependencies": {
67 "@ljharb/eslint-config": "^21.1.0",
68 "@types/call-bind": "^1.0.5",
69 "@types/for-each": "^0.3.3",
70 "@types/gopd": "^1.0.3",
71 "@types/is-callable": "^1.1.2",
72 "@types/make-arrow-function": "^1.2.2",
73 "@types/make-generator-function": "^2.0.3",
74 "@types/object-inspect": "^1.8.4",
75 "@types/tape": "^5.6.4",
76 "aud": "^2.0.4",
77 "auto-changelog": "^2.4.0",
78 "eslint": "=8.8.0",
79 "evalmd": "^0.0.19",
80 "in-publish": "^2.0.1",
81 "is-callable": "^1.2.7",
82 "make-arrow-function": "^1.2.0",
83 "make-generator-function": "^2.0.0",
84 "npmignore": "^0.3.1",
85 "nyc": "^10.3.2",
86 "object-inspect": "^1.13.1",
87 "possible-typed-array-names": "^1.0.0",
88 "safe-publish-latest": "^2.0.0",
89 "tape": "^5.7.5",
90 "typescript": "^5.4.0-dev.20240219"
91 },
92 "engines": {
93 "node": ">= 0.4"
94 },
95 "auto-changelog": {
96 "output": "CHANGELOG.md",
97 "template": "keepachangelog",
98 "unreleased": false,
99 "commitLimit": false,
100 "backfillLimit": false,
101 "hideCredit": true
102 },
103 "testling": {
104 "files": "test/index.js"
105 },
106 "publishConfig": {
107 "ignore": [
108 ".github/workflows"
109 ]
110 }
111}
Note: See TracBrowser for help on using the repository browser.