-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 926 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
{
"name": "@wfoxall/timeframe",
"version": "1.2.0",
"description": "A javascript library for parsing and manipulation of SMPTE/EBU/Generic timecodes, framerates and framecounts.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha ./dist/tests/test.js",
"pretest": "npm run build",
"prepublish": "npx tsc"
},
"keywords": [
"timecode",
"framerate",
"smpte",
"ebu",
"converter"
],
"author": "Will Foxall",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"chai": "^4.3.3",
"mocha": "^8.3.1",
"typescript": "^4.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wfoxall/timeframe.git"
},
"bugs": {
"url": "https://github.com/wfoxall/timeframe/issues"
},
"homepage": "https://github.com/wfoxall/timeframe#readme"
}