forked from kodi-connect/kodi-alexa-video
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.57 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.57 KB
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
{
"name": "kodi-alexa-video",
"version": "1.0.0",
"description": "Kodi Alexa Video",
"main": "index.js",
"author": "Tomas Kislan",
"license": "MIT",
"scripts": {
"clean": "rm -rf build",
"watch": "babel src -d build --copy-files --watch --source-maps inline",
"build": "yarn run clean && babel src -d build --copy-files --source-maps inline",
"package": "./build-package.sh",
"install_flowdefs": "flow-typed install",
"deploy:us": "aws --region us-east-1 lambda update-function-code --function-name kodi-video-dev --zip-file fileb://package.zip",
"deploy:eu": "aws --region eu-west-1 lambda update-function-code --function-name kodi-video-dev --zip-file fileb://package.zip",
"deploy": "npm-run-all --parallel deploy:*",
"test:lint": "eslint src tests",
"test:flow": "flow src && flow tests",
"test:unit": "jest tests",
"test": "npm-run-all --sequential test:*"
},
"dependencies": {
"ajv": "^6.0.1",
"axios": "^0.17.1",
"lodash": "^4.17.4",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.7.0",
"flow-bin": "^0.62.0",
"flow-typed": "^2.3.0",
"jest": "^21",
"moxios": "^0.4.0",
"nodemon": "^1.14.5",
"npm-run-all": "^4.1.2",
"wait-on": "^2.0.2"
}
}