-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.52 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
{
"name": "date-events",
"version": "1.0.1",
"description": "EventEmitter that emits date/time events",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/jasonpincin/date-events.git"
},
"keywords": [
"date",
"EventEmitter",
"event",
"calendar"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonpincin/date-events/issues"
},
"homepage": "https://github.com/jasonpincin/date-events",
"author": {
"name": "Jason Pincin",
"email": "jason@pincin.com",
"url": "http://jason.pincin.com/"
},
"contributors": [],
"devDependencies": {
"@jasonpincin/standard": "~5.0.0-6",
"faucet": "0.0.1",
"istanbul": "~0.4.0",
"opn": "~1.0.2",
"phantomjs": "~1.9.18",
"snazzy": "~2.0.1",
"tape": "~4.2.0",
"zuul": "~3.7.1"
},
"scripts": {
"test": "npm run -s faucet && npm run -s lint && npm run -s check-cover",
"travis-test": "npm run -s tap && ((cat coverage/lcov.info | coveralls) || exit 0)",
"faucet": "istanbul cover --report lcov --print none -- tape test/*.js | faucet",
"tap": "istanbul cover --report lcov --print none -- tape test/*.js",
"phantom": "zuul --phantom -- test/*.js | faucet",
"lint": "standard | snazzy",
"check-cover": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100 2>&1 | grep ERROR: ; (test ${PIPESTATUS[0]} -eq 0) || (istanbul report text; exit 1)",
"view-cover": "istanbul report text",
"open-cover": "open coverage/index.html"
}
}