This repository was archived by the owner on Mar 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "get-reverse-iterating-array",
"version": "2.0.0",
"license": "MIT",
"description": "A lightweight proxy function reversing an array’s default iteration direction",
"author": {
"name": "Philipp Rudloff",
"url": "https://kleinfreund.de"
},
"homepage": "https://github.com/kleinfreund/get-reverse-iterating-array",
"repository": {
"type": "git",
"url": "https://github.com/kleinfreund/get-reverse-iterating-array.git"
},
"bugs": {
"url": "https://github.com/kleinfreund/get-reverse-iterating-array/issues"
},
"keywords": [
"array",
"proxy",
"reverse-iterating",
"iterable",
"iterator"
],
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/get-reverse-iterating-array.js"
},
"./types/index.d.ts": "./types/index.d.ts"
},
"main": "./dist/get-reverse-iterating-array.js",
"module": "./dist/get-reverse-iterating-array.js",
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"sideEffects": false,
"scripts": {
"build": "rollup --config",
"test": "vitest run --coverage",
"start": "http-server",
"prepublishOnly": "npm run test"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@vitest/coverage-v8": "^2.1.3",
"http-server": "^14.1.1",
"jsdom": "^25.0.1",
"rollup": "^4.24.0",
"vitest": "^2.1.3"
}
}