-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1006 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1006 Bytes
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
{
"name": "then-while",
"version": "0.1.0",
"description": "Call an (a)sync function until an (a)sync predicate returns false.",
"main": "index.js",
"repository": "git@github.com:sebinsua/then-while.git",
"author": "Seb Insua <me@sebinsua.com>",
"license": "MIT",
"keywords": [
"then",
"promise",
"while",
"async",
"sync",
"predicate"
],
"scripts": {
"commitmsg": "validate-commit-msg",
"prepush": "npm run -s test",
"push": "git push --follow-tags origin master",
"format": "prettier-standard-formatter index.js test.js",
"test": "npm run -s format && ava",
"release": "npm run -s test && standard-version && npm publish"
},
"engines": {
"node": "^6"
},
"dependencies": {
"any-promise": "^1",
"debug": "^2",
"is-promise": "^2"
},
"devDependencies": {
"ava": "*",
"husky": "*",
"prettier-standard-formatter": "*",
"sinon": "*",
"standard-version": "*",
"validate-commit-msg": "*"
}
}