-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "awaitability",
"version": "0.0.1",
"author": "Alexey Zabrodsky <[email protected]>",
"license": "MIT",
"description": "Utilities for composing async/await functions.",
"keywords": [],
"main": "index.js",
"homepage": "https://github.com/elmigranto/awaitability",
"repository": {
"type": "git",
"url": "https://github.com/elmigranto/awaitability.git"
},
"bugs": {
"url": "https://github.com/elmigranto/awaitability/issues"
},
"engines": {
"node": ">=7",
"npm": ">=4"
},
"scripts": {
"test": "mocha --harmony --bail --no-exit --throw-deprecation ./tests/helper.js './tests/**/*.test.js'",
"testw": "nodemon --watch src/ --watch tests/ --exec 'npm run test'",
"lint": "eslint index.js src/ tests/ examples/",
"lintw": "nodemon --watch index.js --watch src/ --watch tests/ --exec 'npm run lint'",
"prepublish": "npm run lint && npm run test"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.15.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0"
}
}