-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1001 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
40
41
42
43
{
"name": "vow-asker",
"version": "2.0.0",
"description": "Module wraps asker API in the vow promises implementation",
"main": "./lib/vow-asker.js",
"scripts": {
"lint": "eslint lib test && jscs lib test",
"unit": "nodeunit test",
"test": "npm run unit",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git://github.com/nodules/vow-asker.git"
},
"keywords": [
"http",
"request",
"client",
"vow",
"promises"
],
"author": "Phillip Kovalev <[email protected]> (https://github.com/kaero)",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/nodules/vow-asker/raw/master/LICENSE"
}
],
"readmeFilename": "README.md",
"dependencies": {
"asker": "^2.0.0",
"vow": "^0.4.11"
},
"devDependencies": {
"eslint": "^1.9.0",
"eslint-config-nodules": "^0.1.1",
"jscs": "^2.5.1",
"jscs-preset-nodules": "^0.1.0",
"jshint": "2.1.x",
"nodeunit": "0.8.x"
}
}