-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 KB
/
package.json
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
{
"name": "@henrik-dmg/swifty-array-helpers",
"author": "Henrik Panhans",
"license": "MIT",
"version": "2.1.0",
"description": "A set of convenience methods that extends Array's capabilities, inspired by Swift",
"homepage": "https://github.com/henrik-dmg/swifty-array-helpers#readme",
"keywords": [
"array",
"extension"
],
"repository": {
"type": "git",
"url": "https://github.com/henrik-dmg/swifty-array-helpers.git"
},
"bugs": {
"url": "https://github.com/henrik-dmg/swifty-array-helpers/issues"
},
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "jest --coverage"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@parcel/diagnostic": "^2.12.0",
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"parcel": "latest",
"ts-jest": "^29.2.5"
},
"jest": {
"preset": "ts-jest"
}
}