forked from overlookmotel/sequelize-hierarchy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.3 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
{
"name": "sequelize-hierarchy",
"version": "2.0.4",
"description": "Nested hierarchies for Sequelize",
"main": "index.js",
"author": {
"name": "Overlook Motel"
},
"repository": {
"type": "git",
"url": "https://github.com/overlookmotel/sequelize-hierarchy.git"
},
"bugs": {
"url": "https://github.com/overlookmotel/sequelize-hierarchy/issues"
},
"dependencies": {
"is-generator": "^1.0.3",
"lodash": "^4.17.11",
"semver-select": "^1.1.0",
"bluebird": "^3.7.2"
},
"devDependencies": {
"@overlookmotel/eslint-config": "^2.1.2",
"@overlookmotel/eslint-config-tests": "^1.0.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-eslint-comments": "^3.1.1",
"eslint-plugin-import": "^2.17.2",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mysql2": "^1.6.5",
"pg": "^7.10.0",
"pg-hstore": "^2.3.2",
"pg-native": "^3.0.0",
"sequelize": "^6.3.4",
"sqlite3": "^4.0.6",
"tedious": "^6.1.1"
},
"keywords": [
"sequelize",
"sequelize-plugin",
"hierarchy",
"nested",
"tree"
],
"scripts": {
"test": "npm run lint && npm run test-main",
"lint": "eslint '*.js' '.*.js' '**/*.js' '**/.*.js'",
"lint-fix": "eslint '*.js' '.*.js' '**/*.js' '**/.*.js' --fix",
"test-mysql": "cross-env DIALECT=mysql npm run test-main",
"test-postgres": "cross-env DIALECT=postgres npm run test-main",
"test-postgres-native": "cross-env DIALECT=postgres-native npm run test-main",
"test-sqlite": "cross-env DIALECT=sqlite npm run test-main",
"test-mssql": "cross-env DIALECT=mssql npm run test-main",
"test-main": "mocha --check-leaks --colors -t 30000 -R spec \"test/**/*.test.js\"",
"cover": "npm run cover-main && rm -rf coverage",
"coveralls": "npm run cover-main && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"cover-main": "cross-env COVERAGE=true istanbul cover _mocha --report lcovonly -- -t 30000 -R spec \"test/**/*.test.js\"",
"ci": "if [ $COVERAGE ]; then npm run coveralls; else npm test; fi"
},
"engines": {
"node": ">=8"
},
"readmeFilename": "README.md",
"license": "MIT"
}