forked from overlookmotel/sequelize-hierarchy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.91 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.91 KB
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
{
"name": "sequelize-hierarchy",
"version": "1.3.2",
"description": "Nested hierarchies for Sequelize",
"main": "./lib/",
"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": {
"lodash": "^4.17.4",
"semver-select": "^1.1.0"
},
"devDependencies": {
"mocha": "^3.4.2",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"sequelize": "^4.3.2",
"mysql": "^2.15.0",
"mysql2": "^1.2.0",
"sqlite3": "^3.1.4",
"pg": "^7.4.0",
"pg-hstore": "^2.3.2",
"pg-native": "^2.2.0",
"tedious": "^1.14.0",
"jshint": "^2.9.5",
"istanbul": "^0.4.5",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1"
},
"keywords": [
"sequelize",
"sequelize-plugin",
"hierarchy",
"nested",
"tree"
],
"scripts": {
"test": "npm run jshint && npm run test-main",
"jshint": "jshint lib test",
"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\"",
"travis": "if [ $COVERAGE ]; then npm run coveralls; else npm test; fi"
},
"engines": {
"node": ">=4"
},
"readmeFilename": "README.md",
"license": "MIT"
}