-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
34 lines (34 loc) · 857 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
{
"name": "ee-first",
"description": "return the first event in a set of ee/event pairs",
"version": "1.1.1",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"contributors": [
"Douglas Christopher Wilson <[email protected]>"
],
"license": "MIT",
"repository": "jonathanong/ee-first",
"devDependencies": {
"mocha": "2.5.3",
"nyc": "11.9.0",
"standard": "11.0.1"
},
"files": [
"index.js",
"LICENSE"
],
"engines": {
"node": ">= 0.8"
},
"scripts": {
"lint": "standard index.js test/test.js",
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov": "nyc --reporter=html --reporter=text npm test",
"test-travis": "nyc --reporter=text npm test"
}
}