-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
53 lines (53 loc) · 1.08 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
{
"name": "najax",
"description": "jquery ajax-stye http requests in node",
"version": "1.0.7",
"homepage": "https://github.com/najaxjs/najax",
"author": "Alan Clarke <[email protected]> (alz.io)",
"contributors": [
"doublerebel",
"philschatz",
"rhildred",
"mar-tino",
"mixu"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/najaxjs/najax.git"
},
"bugs": {
"url": "https://github.com/najaxjs/najax/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/najaxjs/najax/blob/master/LICENSE-MIT"
}
],
"main": "lib/najax",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"test": "istanbul cover mocha && standard"
},
"devDependencies": {
"chai": "^3.4.1",
"getport": "^0.1.0",
"istanbul": "^0.4.1",
"mocha": "^6.0.0",
"nock": "^10.0.0",
"standard": "^11.0.0"
},
"keywords": [],
"dependencies": {
"jquery-deferred": "^0.3.0",
"lodash": "^4.17.21",
"qs": "^6.2.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"license": "MIT"
}