forked from mickhansen/dataloader-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.5 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
{
"name": "dataloader-sequelize",
"version": "2.3.1",
"description": "Batching and simplification of Sequelize with facebook/dataloader",
"main": "lib/index.js",
"options": {
"mocha": "--require resources/mocha-bootload --check-leaks --timeout 10000 --colors --reporter spec --recursive"
},
"license": "MIT",
"scripts": {
"prepublish": "yarn run build",
"lint": "eslint src",
"build": "babel src -d lib",
"test": "yarn run lint && yarn run test:v3 && yarn run test:v4 && yarn run test:v5 && yarn run test:latest",
"test:current": "npm run test:unit && npm run test:integration",
"test:current:raw": "npm run test:unit && npm run test:integration:raw",
"test:unit": "NODE_ENV=test mocha $npm_package_options_mocha 'test/unit/**.test.js'",
"test:integration": "docker-compose run --rm -e NODE_ENV=test dev npm run test:integration:raw",
"test:integration:raw": "mocha $npm_package_options_mocha 'test/integration/**.test.js'",
"test:v3": "yarn add sequelize@3 && yarn run test:current",
"test:v3:raw": "yarn add sequelize@3 && yarn run test:current:raw",
"test:latest": "yarn add sequelize@latest && yarn run test:current",
"test:latest:raw": "yarn add sequelize@latest && yarn run test:current:raw",
"test:v5": "yarn add sequelize@5 && yarn run test:current",
"test:v5:raw": "yarn add sequelize@5 && yarn run test:current:raw",
"test:v4": "yarn add sequelize@4 && yarn run test:current",
"test:v4:raw": "yarn add sequelize@4 && yarn run test:current:raw",
"cover": "babel-node node_modules/.bin/isparta cover --excludes **/resources/** _mocha -- $npm_package_options_mocha 'test/**/*.test.js'"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-plugin-transform-async-to-module-method": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-register": "^6.9.0",
"bluebird": "^3.4.6",
"cls-hooked": "^4.2.2",
"continuation-local-storage": "^3.2.1",
"eslint": "^3.0.0",
"isparta": "^4.0.0",
"mocha": "^3.0.0",
"pg": "^6.1.0",
"sequelize": "^6.3.5",
"sinon": "^1.17.4",
"sinon-as-promised": "^4.0.0",
"unexpected": "^10.14.2",
"unexpected-set": "^1.1.0",
"unexpected-sinon": "^10.2.1"
},
"peerDependencies": {
"sequelize": "^3.24.6 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"dependencies": {
"dataloader": "^1.2.0",
"lodash": "^4.15.0",
"lru-cache": "^4.0.1",
"shimmer": "^1.2.1"
}
}