-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.18 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "iterator-modifier",
"version": "1.0.6",
"description": "A Linq clone. Attempts to be the best Linq clone. Use the from method on the Itmod class to query an iterable.",
"main": "dist/Itmod.js",
"files": [
"dist"
],
"keywords": [
"itmod",
"data",
"datascience",
"iterable",
"linq",
"map",
"filter",
"reduce",
"functional",
"declarative",
"query",
"typescript",
"stream",
"array",
"list",
"iterator",
"no-dependencies",
"function"
],
"directories": {
"test": "tests",
"build": "tsc"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/jest-expect-message": "^1.1.0",
"jest": "^29.6.4",
"jest-expect-message": "^1.1.3",
"ts-jest": "^29.1.1"
},
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JesseRussell411/itmod.git"
},
"author": "Jesse Russell",
"license": "ISC",
"types": "./dist/Itmod.d.ts",
"bugs": {
"url": "https://github.com/JesseRussell411/itmod/issues"
},
"homepage": "https://github.com/JesseRussell411/itmod#readme",
"prettier": {
"tabWidth": 4
}
}