-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.29 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
49
50
51
52
53
54
55
{
"name": "node-timecodes",
"version": "2.5.0",
"description": "Time and SMTPE Timecodes conversions",
"license": "MIT",
"repository": "Synchronized-TV/node-timecodes",
"author": {
"name": "Julien Bouquillon",
"email": "[email protected]",
"url": "http://github.com/Synchronized-TV"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "babel-node spec | tap-spec",
"build": "babel src --out-dir dist",
"prepare": "npm run test && npm run build"
},
"main": "dist/index.js",
"bin": {
"timecodeFromSeconds": "dist/fromSeconds-bin.js",
"timecodeToSeconds": "dist/toSeconds-bin.js"
},
"keywords": [
"node",
"timecode",
"smtpe",
"time",
"conversion"
],
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/5..latest",
"ipad/5..latest",
"android-browser/2..latest"
]
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "4.0.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "0.24.1",
"tap-spec": "4.0.2",
"tape": "4.0.0"
}
}