-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 838 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 838 Bytes
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
{
"name": "slice-map",
"version": "1.0.0",
"description": "An implementation of slice + map done in a single iteration.",
"author": "eduardomcv",
"homepage": "https://github.com/eduardomcv/slice-map#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/eduardomcv/slice-map.git"
},
"main": "src/index.ts",
"type": "module",
"scripts": {
"test": "jest",
"lint": "eslint src/*"
},
"devDependencies": {
"@babel/core": "^7.27.7",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.30.0",
"@types/jest": "^28.1.8",
"babel-jest": "^28.1.3",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"jest": "^28.1.3",
"prettier": "^3.6.2",
"typescript": "^4.9.5",
"typescript-eslint": "^8.35.0"
}
}