-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 975 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
{
"name": "edl-genius",
"version": "4.2.4",
"description": "An ES6 module to work with Edit Decision Lists",
"license": "MIT",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "mocha ./dist/test/index.js",
"test-coverage": "nyc mocha ./dist/test/index.js"
},
"author": {
"name": "Brad Cordeiro",
"email": "[email protected]",
"url": "http://www.bradc.com/"
},
"dependencies": {
"timecode-boss": "^6.0.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/mocha": "^10.0.1",
"@types/node": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-base-typescript": "^1.1.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}