-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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
{
"name": "timecode-boss",
"description": "An ES6 JavaScript module for working with SMPTE timecode",
"main": "./dist/timecode.js",
"types": "./dist/timecode.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/timecode.d.ts",
"default": "./dist/timecode.js"
}
},
"sideEffects": false,
"version": "7.0.1",
"license": "MIT",
"author": {
"name": "Brad Cordeiro",
"email": "brad.cordeiro@gmail.com",
"url": "http://www.bradc.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/bradcordeiro/timecode-boss"
},
"bugs": {
"url": "https://github.com/bradcordeiro/timecode-boss/issues",
"email": "brad.cordeiro@gmail.com"
},
"scripts": {
"build": "tsc",
"test": "mocha dist/timecode.test.js",
"test-coverage": "nyc mocha dist/timecode.test.js"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^3.1.0",
"@tsconfig/node22": "^22.0.5",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"eslint": "^9.39.2",
"eslint-config-airbnb-extended": "^2.3.3",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.23.1",
"mocha": "^11.7.5",
"nyc": "^18.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.51.0"
}
}