-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "multiplexjs",
"title": "Multiplex.js",
"description": "LINQ for JavaScript.",
"version": "3.0.0",
"main": "dist/multiplex.js",
"typings": "dist/multiplex.d.ts",
"author": "Kamyar Nazeri",
"license": "MIT",
"homepage": "https://github.com/multiplex/multiplex.js",
"keywords": [
"mx",
"multiplex",
"javascript",
"linq",
"collection",
"data-structure",
"lazy",
"lambda",
"iterator",
"library",
"framework",
"es6"
],
"engines": {
"node": "*"
},
"bugs": {
"url": "https://github.com/multiplex/multiplex.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/multiplex/multiplex.js.git"
},
"dependencies": {},
"preferGlobal": true,
"nyc": {
"exclude": [
"**/testrunner.js",
"test",
"tasks",
"external"
]
},
"devDependencies": {
"load-grunt-tasks": "~5.1.0",
"grunt": "~1.5.3",
"grunt-cli": "~1.4.3",
"grunt-contrib-clean": "~2.0.1",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-qunit": "~6.2.0",
"grunt-contrib-jshint": "~3.2.0",
"grunt-contrib-uglify": "~5.2.2",
"grunt-contrib-watch": "~1.1.0",
"grunt-benchmark": "~1.0.0",
"grunt-jscs": "~3.0.1",
"es6-promise": "~4.2.8",
"es6-map": "~0.1.5",
"benchmark": "~2.1.4",
"qunit": "~2.19.1",
"rollup": "~2.79.0",
"coveralls": "~3.1.1",
"nyc": "~15.1.0"
},
"scripts": {
"build": "npm install && grunt",
"test": "grunt test",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
}
}