forked from ENikS/LINQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 1.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "linq-es2015",
"version": "2.4.33",
"description": "Complete implementation of Language-Integrated Query (LINQ) (ECMAScript 2015 Language Specification)",
"main": "lib/linq.js",
"typings": "lib/linq.d.ts",
"tonicExampleFilename": "./dist/example.js",
"homepage": "https://github.com/ENikS/LINQ/wiki",
"author": {
"name": "Eugene Sadovoi",
"email": "evgeni@eniks.com"
},
"keywords": [
"linq",
"LINQ",
"deferred",
"query",
"Enumerable",
"Iterable",
"IEnumerable",
"IEnumerator",
"Enumerator",
"System.Linq",
"generators",
"Symbol",
"symbol.iterator",
"iterator",
"Aggregate",
"All",
"Any",
"Average",
"Concat",
"Contains",
"Count",
"DefaultIfEmpty",
"Distinct",
"ElementAt",
"ElementAtOrDefault",
"Except",
"First",
"FirstOrDefault",
"GroupBy",
"GroupJoin",
"Intersect",
"Join",
"Last",
"LastOrDefault",
"Max",
"Min",
"OrderBy",
"OrderByDescending",
"ThenBy",
"ThenByDescending",
"Range",
"Repeat",
"Reverse",
"Select",
"SelectMany",
"SequenceEqual",
"Single",
"SingleOrDefault",
"Skip",
"SkipWhile",
"Sum",
"Take",
"TakeWhile",
"ToArray",
"ToMap",
"Union",
"Where",
"Zip",
"es6",
"es2015"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ENikS/Linq.git"
},
"devDependencies": {
"browserify": "^16.0.0",
"chai": "^4.1.2",
"jsmin": "^1.0.1",
"latest": "^0.2.0",
"mocha": "^5.0.0",
"typescript": "^2.7.2"
},
"scripts": {
"build:ts": "tsc",
"build:js": "browserify ./lib/linq.js -o ./dist/linq.js -s Enumerable",
"build:min": "jsmin ./dist/linq.js > ./dist/linq.min.js",
"build": "npm run build:ts && npm run build:js && npm run build:min",
"test": "mocha test/ --recursive"
}
}