-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 947 Bytes
/
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
{
"name": "sequelize-views-support",
"version": "1.2.2",
"description": "Adds VIEWS support to Sequelize.",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -D -d build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abelosorio/sequelize-views-support.git"
},
"keywords": [
"NodeJS",
"Sequelize",
"Views",
"PostgreSQL"
],
"author": "Abel M. Osorio <abel.m.osorio@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/abelosorio/sequelize-views-support/issues"
},
"homepage": "https://github.com/abelosorio/sequelize-views-support#readme",
"dependencies": {
"pg": "^6.4.2",
"sequelize": "^6.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0"
}
}