This repository was archived by the owner on Oct 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 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
47
48
49
50
51
52
53
54
55
56
{
"name": "images",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "tsc -w",
"test": "jest --watch",
"exce": "docker run --rm --volume ${PWD}/dist:/build amazonlinux:nodejs node invoke.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/episodehunter/image-master.git"
},
"keywords": [
"serverless"
],
"bugs": {
"url": "https://github.com/episodehunter/image-master/issues"
},
"homepage": "https://github.com/episodehunter/image-master#readme",
"author": "Oskar Karlsson <kontakta@oskarkarlsson.nu>",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "0.0.34",
"@types/jest": "^22.2.2",
"@types/node": "^9.6.1",
"@types/sharp": "^0.17.7",
"aws-sdk": "^2.218.1",
"jest": "^22.4.3",
"simple-spy": "^2.1.0",
"ts-jest": "^22.4.2",
"typescript": "^2.8.1"
},
"dependencies": {
"@episodehunter/kingsguard": "^2.1.0",
"@episodehunter/thetvdb": "^3.0.0",
"sharp": "^0.20.1"
},
"jest": {
"transform": {
"^.+\\.(j|t)sx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "src/.*(__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 130
}
}