UNPKG

971 BJSONView Raw
1{
2 "name": "durations",
3 "description": "Duration tracking and formattng for node.js",
4 "keywords": [
5 "Stopwatch",
6 "Monitoring",
7 "Performance",
8 "Duration"
9 ],
10 "version": "1.0.0",
11 "author": "Joel Edwards (https://github.com/joeledwards)",
12 "contributors": [
13 "Joel Edwards <joeledwards@gmail.com> (https://github.com/joeledwards)"
14 ],
15 "repository": {
16 "type": "git",
17 "url": "https://github.com/joeledwards/node-durations.git"
18 },
19 "licenses": [
20 {
21 "type": "MIT",
22 "url": "https://github.com/joeledwards/node-durations/blob/master/LICENSE"
23 }
24 ],
25 "main": "./lib/index",
26 "directories": {
27 "lib": "./lib"
28 },
29 "dependencies" : {
30 "q": ">=1.2 <2"
31 },
32 "devDependencies": {
33 "coffee-script": "~1.7.1",
34 "mocha": "~1.20.1",
35 "timeunit": "~1.1.1"
36 },
37 "scripts": {
38 "prepublish": "cake build",
39 "build": "cake build",
40 "test": "cake test"
41 },
42 "engines": {
43 "node": ">=0.8.1"
44 }
45}