-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 968 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
38
39
40
41
42
43
44
{
"name": "durations",
"description": "Duration tracking and formattng for node.js",
"keywords": [
"Stopwatch",
"Monitoring",
"Performance",
"Duration"
],
"version": "3.4.2",
"author": "Joel Edwards (https://github.com/joeledwards)",
"contributors": [
"Joel Edwards <[email protected]> (https://github.com/joeledwards)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joeledwards/node-durations.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/joeledwards/node-durations/blob/master/LICENSE"
}
],
"main": "./lib/index",
"directories": {
"lib": "./lib"
},
"devDependencies": {
"chai": "^4.1.2",
"coffee-script": "^1.12.7",
"mocha": "^2.3.4",
"timeunit": "^1.1.1"
},
"scripts": {
"prepublish": "cake build",
"build": "cake build",
"test": "cake test"
},
"engines": {
"node": ">=0.10.0"
}
}