-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 885 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 885 Bytes
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
{
"name": "@fluidnext/timecode",
"version": "0.1.0",
"description": "Timecode decoder",
"main": "index.js",
"scripts": {
"tsc-commonjs": "tsc -p commonjs",
"tsc-es6": "tsc -p .",
"tsc-all": "tsc -p commonjs | tsc -p .",
"test": "node test/test-timecode.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluidnext/timecode.git"
},
"devDependencies": {
"canvas": "^2.6.0",
"@types/node": "^12.12.14",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"jest": "^24.5.0",
"mocha": "^6.0.2",
"ts-jest": "^24.0.0",
"ts-node": "^8.5.4",
"typescript": "^3.3.3333"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fluidnext/timecode/issues"
},
"homepage": "https://github.com/fluidnext/timecode#readme"
}