-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "pnp-media-service",
"version": "0.1.4",
"description": "Media manipulation and storage microservice",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"start-dev": "nodemon",
"test": "better-npm-run test",
"lint": "standard"
},
"betterScripts": {
"test": "nyc --reporter=lcov --reporter=text ava --verbose --fail-fast"
},
"bin": {
"pnp-media-service": "./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clevertech/media-service.git"
},
"author": "Alberto Gimeno <gimenete@gimenete.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/clevertech/media-service/issues"
},
"homepage": "https://github.com/clevertech/media-service#readme",
"dependencies": {
"aws-sdk": "^2.238.1",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"joi": "^10.4.1",
"node-fetch": "^1.6.3",
"sharp": "^0.20.2",
"winston": "^2.3.1"
},
"devDependencies": {
"ava": "^0.18.2",
"better-npm-run": "^0.0.15",
"nodemon": "^1.11.0",
"nyc": "^10.3.0",
"standard": "^10.0.2"
}
}