-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
42
43
44
45
{
"name": "@xeinebiu/ts-iterable",
"version": "1.1.0",
"description": "Enumerable arrays for Typescript",
"main": "index.js",
"files": [
"dist"
],
"scripts": {
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xeinebiu/ts-enumerable.git"
},
"keywords": [
"enumerable",
"array",
"javascript",
"typescript"
],
"author": "xeinebiu@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/xeinebiu/ts-enumerable/issues"
},
"homepage": "https://github.com/xeinebiu/ts-enumerable#readme",
"devDependencies": {
"@types/jest": "29.1.2",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.5.1",
"prettier-eslint": "13.0.0",
"jest": "29.1.2",
"ts-jest": "29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/lodash": "^4.14.186",
"lodash": "^4.17.21"
}
}