forked from rsdoiel/stn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name" : "stn",
"version" : "0.0.13",
"description" : "A small utility library for parsing Simple Timesheet notation into a useful JSON object.",
"main" : "./stn.js",
"bin": {
"stn-rpt": "./extras/stn-rpt.js",
"stn-harvestcsv": "./extras/stn-harvestcsv.js"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/rsdoiel/stn.git"
},
"author" : {
"name" : "R. S. Doiel",
"email" : "[email protected]",
"url" : "https://github.com/rsdoiel"
},
"maintainers" : [{
"name" : "R. S. Doiel",
"url" : "https://github.com/rsdoiel"
}],
"engines" : {
"node" : "0.10.x",
"npm" : "1.2.x"
},
"dependencies": {
"opt": ">= 0.1.x",
"fmttxt": "0.0.x"
},
"devDependencies": {
"yui": "3.10.x"
},
"scripts" : {
"test" : "node tests/stn_test.js && node tests/stnfs_test.js"
},
"bugs": {
"url": "http://github.com/rsdoiel/stn/issues"
}
}