-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
62 lines (62 loc) · 2.74 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
{
"name": "dataloader-sequelize",
"version": "2.3.3",
"description": "Batching and simplification of Sequelize with facebook/dataloader",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"lint": "eslint src",
"build": "babel src -d lib",
"test": "npm run lint && npm run test:v3 && npm run test:v4 && npm run test:v5 && npm 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": "cross-env NODE_ENV=test mocha --require resources/mocha-bootload --check-leaks --timeout 10000 --colors --reporter spec --recursive 'test/unit/**.test.js'",
"test:integration": "docker-compose run --rm -e NODE_ENV=test dev npm run test:integration:raw",
"test:integration:raw": "mocha --require resources/mocha-bootload --check-leaks --timeout 10000 --colors --reporter spec --recursive 'test/integration/**.test.js'",
"test:v3": "npm install sequelize@3 && npm run test:current",
"test:v3:raw": "npm install sequelize@3 && npm run test:current:raw",
"test:latest": "npm install sequelize@latest && npm run test:current",
"test:latest:raw": "npm install sequelize@latest && npm run test:current:raw",
"test:v5": "npm install sequelize@5 && npm run test:current",
"test:v5:raw": "npm install sequelize@5 && npm run test:current:raw",
"test:v4": "npm install sequelize@4 && npm run test:current",
"test:v4:raw": "npm install sequelize@4 && npm run test:current:raw",
"cover": "babel-node node_modules/.bin/isparta cover --excludes **/resources/** _mocha -- --require resources/mocha-bootload --check-leaks --timeout 10000 --colors --reporter spec --recursive 'test/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/mickhansen/dataloader-sequelize.git"
},
"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",
"cross-env": "^7.0.3",
"eslint": "^3.0.0",
"isparta": "^4.0.0",
"mocha": "^3.0.0",
"pg": "^6.1.0",
"sequelize": "^3.35.1",
"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"
}
}