forked from jakerella/jquery-mockjax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.54 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
{
"name": "jquery-mockjax",
"title": "jQuery Mockjax",
"version": "2.0.1",
"main": "./src/jquery.mockjax.js",
"description": "The jQuery Mockjax Plugin provides a simple and extremely flexible interface for mocking or simulating ajax requests and responses.",
"url": "https://github.com/jakerella/jquery-mockjax",
"scripts": {
"test": "grunt test:all"
},
"keywords": [
"ajax",
"mock",
"unit",
"testing",
"jquery-plugin"
],
"author": {
"name": "Jonathan Sharp",
"url": "http://jdsharp.com"
},
"contributors": [
{
"name": "Doug Neiner"
},
{
"name": "Jonathan Creamer"
},
{
"name": "Jordan Kasper"
}
],
"homepage": "https://github.com/jakerella/jquery-mockjax",
"repository": {
"type": "git",
"url": "https://github.com/jakerella/jquery-mockjax.git"
},
"bugs": {
"web": "http://github.com/jakerella/jquery-mockjax/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
},
{
"type": "GPLv2",
"url": "http://www.gnu.org/licenses/gpl-2.0.html"
}
],
"dependencies": {
"jquery": "^2.1.3"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-qunit": "^0.5.2",
"grunt-contrib-uglify": "^0.6.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.12.7",
"jsdom": "^4.2.0",
"load-grunt-tasks": "^0.6.0",
"mocha": "^2.2.4",
"xmlhttprequest": "^1.7.0"
}
}