This repository has been archived by the owner on Sep 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.95 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "node-mariner",
"version": "0.3.1",
"description": "Mariner",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon --exec babel-node src/index.js",
"build": "rimraf dist && babel src --out-dir dist && cp -a ./src/. ./dist/es6",
"lint": "eslint ./src --fix",
"test": "jest --coverage",
"flow": "flow",
"test:watch": "jest --watch"
},
"authors": [
"Dan Radenkovic <dan@radenkovic.org> (https://github.com/radenkovic)"
],
"keywords": [
"node",
"orm",
"library",
"validator",
"service",
"model",
"utils",
"framework"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/radenkovic/mariner.git"
},
"npmName": "node-mariner",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"bugs": {
"url": "https://github.com/radenkovic/mariner/issues",
"email": "dan@radenkovic.org"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"aws-sdk": "^2.266.1",
"bcrypt": "^3.0.0",
"exif-reader": "^1.0.2",
"jsonwebtoken": "^8.1.0",
"knex": "^0.16.3",
"moment": "^2.22.2",
"mustache": "^3.0.1",
"nodemailer": "^5.1.1",
"pg": "^7.4.1",
"sharp": "^0.21.0",
"validate.js": "^0.12.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-prettier": "^3.0.0",
"flow-bin": "^0.91.0",
"flow-typed": "^2.5.1",
"jest": "^24.0.0",
"prettier": "^1.10.2",
"rimraf": "^2.6.3"
}
}