-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.15 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
{
"name": "manipula",
"version": "1.3.15",
"description": "Implementation of LINQ",
"engines": {
"node": ">=8"
},
"main": "./src/index.js",
"types": "./src/index.d.ts",
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest --verbose",
"coverageCalculation": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litichevskiydv/manipula.git"
},
"keywords": [
"LINQ",
"Collection",
"Manipulation"
],
"author": "Dmitriy Litichevskiy",
"license": "MIT",
"bugs": {
"url": "https://github.com/litichevskiydv/manipula/issues"
},
"homepage": "https://github.com/litichevskiydv/manipula#readme",
"dependencies": {
"collectio-hashmap": "^1.0.4",
"collectio-hashset": "^1.0.4",
"equality-comparison": "^1.0.8",
"partitioned-loops": "^1.0.4"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.0",
"jest-extended": "^3.2.3"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended/all"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}