-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.9 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "amplify-video.js",
"version": "1.0.3",
"description": "amplify-video javascript client library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc",
"dev": "tsc -watch",
"tsc": "tsc",
"version": "npm run build",
"postversion": "git push && git push --tags && rm -rf dist/",
"prepare": "husky install",
"pretest": "npm run build",
"test": "npm run unit:test && npm run cypress",
"cypress": "npm run build && npm --prefix ./e2e test",
"unit:test": "jest --testPathPattern=unit-tests",
"lint": "eslint .",
"lint:report": "eslint --output-file eslint_report.json --format json src",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trackit/amplify-video.js.git"
},
"keywords": [
"amplify",
"video",
"amplify-video",
"javascript"
],
"author": "Nathan Agez",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/trackit/amplify-video.js/issues"
},
"homepage": "https://github.com/trackit/amplify-video.js#readme",
"dependencies": {
"@aws-amplify/analytics": "^5.0.0",
"@aws-amplify/api": "^4.0.0",
"@aws-amplify/auth": "^4.0.0",
"@aws-amplify/core": "^4.0.2",
"@aws-amplify/storage": "^4.0.0",
"chalk": "^4.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/video.js": "^7.3.26",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"aws-amplify": "^4.2.9",
"aws-sdk": "^2.988.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"husky": "^6.0.0",
"jest": "^27.1.0",
"lint-staged": "^11.1.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"files": [
"dist/**/*"
],
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}