kdenlive-ts/package.json

36 lines
969 B
JSON
Raw Permalink Normal View History

{
2021-10-25 21:44:27 +02:00
"name": "kdenlive-ts",
2021-10-25 22:01:10 +02:00
"version": "0.0.4",
"description": "Create kdenlive projects from within JS",
"main": "lib/index.js",
"scripts": {
"test": "node test.js",
"build": "tsc",
"prepare": "npm run build",
"test-reports": "npm run build && rm -fr .xunit coverage && npm run test -- --cover --test-report"
},
2021-10-25 21:44:27 +02:00
"author": "Kuba Orlik",
"repository": "https://git.internet-czas-dzialac.pl/icd/kdenlive-ts",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-with-tsc-error": "^0.0.7",
"mocha": "^9.1.1",
"mri": "^1.1.6",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"types": "./@types/index.d.ts",
"dependencies": {
"zx": "^4.2.0"
}
}