-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
39 lines (39 loc) · 995 Bytes
/
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
{
"name": "linq-es6",
"version": "0.2.1",
"description": "An implementation of .NET's LINQ API in JavaScrpit using ES6 generators for lazy evaluation",
"keywords": [
"linq"
],
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^5.1.13",
"chai": "^2.3.0",
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"gulp-eslint": "^0.11.1",
"gulp-mocha": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"mocha": "^2.2.4"
},
"scripts": {
"test": "mocha --require ./test-helpers/_helper.js --require ./test-helpers/_es6.js --harmony_arrow_functions"
},
"repository": {
"type": "git",
"url": "https://github.com/aaronpowell/linq-in-javascript"
},
"author": "Aaron Powell <me@aaron-powell.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronpowell/linq-in-javascript/issues"
},
"engines": {
"node": ">=0.11.4"
}
}