-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.06 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
{
"name": "serpa",
"version": "0.0.1",
"description": "A library for chaining promises",
"homepage": "https://github.com/AdesisNetlife/serpa",
"author": "Gonzalo Ruiz de Villa <[email protected]>",
"main": "serpa.js",
"keywords": [
"serpa",
"series",
"parallel",
"chain",
"q",
"flow control",
"fluent",
"chain",
"node"
],
"contributors": [
"Gonzalo Ruiz de Villa <[email protected]>"
],
"license": {
"type": "MIT",
"url": "https://raw.githubusercontent.com/AdesisNetlife/serpa/master/LICENSE"
},
"repository": {
"type": "git",
"url": "https://github.com/AdesisNetlife/serpa.git"
},
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"q": "~1.0.1"
},
"devDependencies": {
"gulp": "~3.5.6",
"gulp-util": "~2.2.14",
"gulp-jasmine": "~0.2.0",
"gulp-jshint": "~1.5.0",
"gulp-istanbul": "~0.1.1",
"coveralls": "~2.8.0"
},
"scripts": {
"test": "gulp jasmine",
"lint": "gulp lint"
},
"directories": {
"test": "./spec"
}
}