-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 983 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
{
"name": "timecodeutils",
"version": "0.0.1",
"description": "Convert timecode(hh:mm:ss) to seconds and vice versa",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"build": "coffee --bare --compile --output lib src/index.coffee",
"prepublish": "coffee --bare --compile --output lib src/index.coffee"
},
"repository": {
"type": "git",
"url": "git://github.com/jvanaert/timecodeutils.git"
},
"keywords": [
"node",
"timecode"
],
"author": "Jeroen van Aert <[email protected]> (https://github.com/jvanaert)",
"contributors": [
"Ilja Strobbe <[email protected]> (https://github.com/istrobes)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jvanaert/timecodeutils/issues"
},
"devDependencies": {
"coffee-script": "~1.6.3",
"mocha": "~1.12.1",
"assert": "~0.4.9"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"chai": "~1.7.2"
}
}