-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 KB
/
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
36
37
38
39
40
41
42
43
{
"name": "@eyevinn/shaka-packager-s3",
"version": "0.6.2",
"description": "Shaka packager with S3",
"main": "dist/index.js",
"bin": {
"shaka-packager-s3": "dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint .",
"pretty": "prettier --check --ignore-unknown .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "jest --passWithNoTests",
"postversion": "git push && git push --tags",
"start": "ts-node -T src/cli.ts"
},
"author": "Eyevinn Technology <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/jest": "^29.5.11",
"@types/mv": "^2.1.4",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-node-single-context": "^29.1.0",
"lerna": "^8.1.2",
"prettier": "^2.8.4",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
},
"dependencies": {
"commander": "^12.1.0",
"mv": "^2.1.1"
}
}