forked from awslabs/amplify-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.87 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
{
"name": "amplify-category-video",
"version": "3.5.0",
"description": "Plugin for Amplify to add support for live streaming. Made for Unicorn Trivia Workshop",
"main": "index.js",
"scripts": {
"postinstall": "node scripts/post-install.js",
"preversion": "git fetch upstream && git checkout upstream/master && npm run lint && npm run test",
"version": "cross-env-shell git checkout -b release/$npm_package_version ",
"postversion": "git push upstream && git push --tags",
"test": "jest --detectOpenHandles --runInBand",
"dev-test": "NODE_ENV=dev jest --detectOpenHandles --runInBand",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"release": "node scripts/release.js"
},
"author": "wizage",
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/amplify-video.git"
},
"keywords": [
"amplify",
"plugin",
"video"
],
"dependencies": {
"archiver": "^3.1.1",
"chalk": "^2.4.2",
"child_process": "^1.0.2",
"ejs": "^2.7.1",
"fs-extra": "^7.0.0",
"ini": "^1.3.5",
"inquirer": "^8.0.0",
"mime-types": "^2.1.21",
"ora": "^4.0.3",
"sha1": "^1.1.1",
"yaml": "^1.7.2"
},
"devDependencies": {
"aws-sdk": "^2.834.0",
"axios": "^0.21.1",
"cross-env": "^7.0.3",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"supertest": "^6.1.3"
},
"bugs": {
"url": "https://github.com/awslabs/amplify-video/issues"
},
"homepage": "https://github.com/awslabs/amplify-video#readme"
}