-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.89 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
{
"name": "iterable-query",
"version": "1.0.0-pre.16",
"description": "Query library for ECMAScript iterables.",
"main": "index",
"typings": "index",
"dependencies": {
"@esfx/collection-core": "^1.0.0-pre.11",
"@esfx/collections-hashmap": "^1.0.0-pre.11",
"@esfx/collections-hashset": "^1.0.0-pre.11",
"@esfx/equatable": "^1.0.0-pre.9",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/gulp": "^3.8.36",
"@types/gulp-if": "0.0.33",
"@types/merge2": "^1.1.4",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"@types/orchestrator": "^0.3.2",
"@types/source-map-support": "^0.4.1",
"@types/vinyl": "^2.0.2",
"c8": "^3.2.1",
"chai": "^4.1.2",
"del": "^3.0.0",
"foreground-child": "^1.5.6",
"gulp": "^3.9.1",
"gulp-if": "^2.0.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-typedoc": "^2.2.0",
"gulp-typescript": "^5.0.0-alpha.3",
"gulp-util": "^3.0.7",
"merge2": "^1.2.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"prex": "^0.4.3",
"source-map-support": "^0.5.10",
"typedoc": "^0.12.0",
"typedoc-plugin-external-module-name": "^1.1.3",
"typescript": "^3.4.0-rc",
"vm-sandbox": "0.0.0"
},
"scripts": {
"build": "gulp build",
"test": "gulp test",
"prepublishOnly": "gulp prepublishOnly",
"postpack": "gulp clean:dist"
},
"repository": {
"type": "git",
"url": "https://github.com/rbuckton/iterable-query.git"
},
"keywords": [
"query",
"iterator",
"iterable",
"zip",
"map",
"filter",
"reduce",
"order",
"hierarchy"
],
"author": "Ron Buckton ([email protected])",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rbuckton/iterable-query/issues"
},
"homepage": "https://github.com/rbuckton/iterable-query"
}