-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.08 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.08 KB
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": "node-enumerable",
"version": "6.0.0",
"description": "ES2017 ready LINQ features written in TypeScript",
"main": "index.js",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"test": "node ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkloubert/node-enumerable.git"
},
"keywords": [
"linq",
"enumerable",
"enumerables",
"sequence",
"sequences",
"array",
"arrays",
"generator",
"generators",
"es6",
"es2017",
"typescript",
"ecmascript",
"2015",
"node",
"nodejs",
"dotnet",
"net",
"browser",
"browsers",
"web",
"dom"
],
"author": "mkloubert",
"license": "MIT",
"bugs": {
"url": "https://github.com/mkloubert/node-enumerable/issues"
},
"homepage": "https://github.com/mkloubert/node-enumerable#readme",
"devDependencies": {
"@types/node": "^12.0.0",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.1.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.9.0"
}
}