-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 997 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
{
"name": "portend",
"version": "1.0.0",
"description": "Treat emitted events as promises",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha tests/**/*.test.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "eslint index.js lib/**/*.js tests/**/*.js",
"postversion": "git push && git push --tags",
"test": "mocha tests/**/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nsand/portend.git"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"event",
"promise"
],
"author": "Nick Sandonato <nick.sandonato@gmail.com>",
"license": "Apache-2.0",
"files": [
"lib",
"index.js"
],
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"eslint": "^3.4.0",
"eslint-config-strongloop": "^2.1.0",
"istanbul": "^0.4.0",
"mocha": "^3.0.2"
}
}