forked from najaxjs/najax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.25 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
{
"name": "najax",
"description": "fast, flexible, unit-tested jquery-ajax-stye serverside requests",
"version": "0.2.0",
"homepage": "https://github.com/alanclarke/najax",
"author": {
"name": "Alan Clarke",
"email": "[email protected]",
"url": "alz.so"
},
"contributors": [
"doublerebel",
"philschatz",
"rhildred",
"mar-tino",
"mixu"
],
"repository": {
"type": "git",
"url": "[email protected]:alanclarke/najax.git"
},
"bugs": {
"url": "https://github.com/alanclarke/najax/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/alanclarke/najax/blob/master/LICENSE-MIT"
}
],
"main": "lib/najax",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"blanket": "^1.1.6",
"chai": "^2.1.2",
"chai-checkmark": "^1.0.1",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^1.12.0",
"mocha": "^2.1.0",
"nock": "^1.2.1"
},
"keywords": [],
"dependencies": {
"underscore": ">=1.3.3",
"jquery-deferred": ">=0.2.0"
},
"config": {
"blanket": {
"pattern": "lib",
"data-cover-never": "node_modules"
}
}
}