forked from feathersjs-ecosystem/feathers-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.38 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
{
"name": "feathers-sequelize",
"description": "A service adapter for Sequelize an SQL ORM",
"version": "3.0.0",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-sequelize",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin",
"sequel",
"sequelize",
"mysql",
"sqlite",
"mariadb",
"postgres",
"pg",
"mssql"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-sequelize.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-sequelize/issues"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "semistandard --fix",
"mocha": "mocha --opts mocha.opts --timeout 5000",
"test": "npm run lint && npm run coverage",
"test:postgres": "env DB=postgres npm run lint && npm run coverage:postgres",
"test:mysql": "env DB=mysql npm run lint && npm run coverage:mysql",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"coverage:postgres": "env DB=postgres istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"coverage:mysql": "env DB=mysql istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/commons": "^1.3.0",
"@feathersjs/errors": "^3.2.0",
"lodash.omit": "^4.3.0",
"sequelize": "^4.25.1",
"uberproto": "^1.1.2"
},
"devDependencies": {
"@feathersjs/express": "^1.1.2",
"@feathersjs/feathers": "^3.0.1",
"body-parser": "^1.14.1",
"chai": "^4.0.0",
"feathers-service-tests": "^0.10.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.0.0",
"mysql2": "^1.4.2",
"pg": "^7.3.0",
"pg-hstore": "^2.3.2",
"semistandard": "^12.0.0",
"sqlite3": "^3.1.7"
}
}