-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "tslinq",
"version": "1.0.24",
"description": "ES5 compatable implementation of LINQ and lazily executed enumerables for typescript.",
"typescript": {
"definition": "dist/TSLinqEntry.d.ts"
},
"typings": "dist/TSLinqEntry.d.ts",
"scripts": {
"build": "tsc -d",
"start": "tsc -w",
"test": "jasmine",
"buildprod": "tsc --p tsconfig.prod.json"
},
"keywords": [
"linq",
"typescript",
"es6",
"es5",
"generators"
],
"author": {
"name": "Robert Rudman",
"email": "[email protected]",
"url": "https://github.com/rjrudman/TSLinq"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rjrudman/TSLinq/issues"
},
"main": "dist/TSLinqEntry.js",
"devDependencies": {
"jasmine-core": "^2.6.1",
"tslint": "^5.1.0",
"typescript": "^2.3.2",
"typings": "^2.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/rjrudman/TSLinq.git"
},
"files": [
"dist",
"readme.md"
],
"dependencies": {}
}