-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
95 lines (95 loc) · 2.11 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-collections",
"version": "1.0.255",
"description": "Linq-Collections (ES5): [IEnumerable, IQueryable, ...] + [List, Dictionary, Stack, ... + readonly]",
"main": "./build/src/Linq.js",
"files": [
"build/src",
"README.md",
"LICENSE"
],
"typescript": {
"definition": "./build/src/Linq.d.ts"
},
"typings": "./build/src/Linq.d.ts",
"types": "./build/src/Linq.d.ts",
"author": {
"name": "Ivan Sanz",
"email": "[email protected]",
"url": "https://github.com/isc30"
},
"bugs": {
"url": "https://github.com/isc30/linq-collections/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/isc30/linq-collections"
},
"homepage": "https://github.com/isc30/linq-collections#readme",
"scripts": {
"node-compile": "tsc",
"web-tests-compile": "browserify ./test/TestSuite.ts -p [tsify] > linq-tests.web.js",
"pretest": "npm run node-compile && npm run web-tests-compile",
"test": "nyc mocha ./build/test/TestSuite.js --slow 0",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"publish-node": "npm run node-compile",
"publish-web": "browserify ./src/Linq.ts -p [tsify] > ./build/src/linq.web.js",
"prepublish": "npm run node-compile"
},
"dependencies": {},
"devDependencies": {
"typescript": "*",
"@types/mocha": "*",
"mocha": "*",
"coveralls": "*",
"nyc": "*",
"browserify": "*",
"tsify": "*"
},
"directories": {
"test": "test",
"lib": "src"
},
"license": "MIT",
"keywords": [
"linq",
".net",
"dotnet",
"c#",
"csharp",
"visualbasic",
"collections",
"enumerable",
"ienumerable",
"ts",
"typescript",
"js",
"javascript",
"dictionary",
"idictionary",
"list",
"ilist",
"container",
"hashset",
"objects",
"csharp",
"map",
"iterator",
"iterators",
"array",
"readonly",
"read-only",
"readonlyList",
"readonlydictionary",
"mobile",
"compatible",
"es5",
"ecmascript5",
"es6"
],
"nyc": {
"exclude": [
"build/test"
]
}
}