-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 853 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 853 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
{
"name": "video-encoder",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"dependencies": {},
"devDependencies": {
"typescript": "^4.4.4",
"@types/jest": "^27.0.5",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8"
},
"scripts": {
"build": "tsc",
"dev": "ts-node-dev src/index.ts",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test:report": "sensible-browser ./coverage/lcov-report/index.html",
"test": "jest --coverage"
},
"author": "",
"license": "ISC"
}