-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "sequelize-nested-set",
"version": "1.6.2",
"description": "Library to store and manage nested set trees using Sequelize",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"lodash": "^4.17.11"
},
"peerDependencies": {
"sequelize": "4.x || 5.x || 6.x"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.8.1",
"mocha": "^8.2.1",
"mysql2": "^2.2.5",
"nyc": "^15.1.0",
"sequelize": "^6.3.5"
},
"scripts": {
"test": "mocha --exit",
"test-with-coverage": "nyc mocha --exit",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fremail/sequelize-nested-set.git"
},
"keywords": [
"Sequelize",
"sequelize-plugin",
"nested",
"set",
"node",
"nested-set",
"nestedset",
"hierarhy",
"tree"
],
"author": "Anton Demushkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fremail/sequelize-nested-set/issues"
},
"homepage": "https://github.com/fremail/sequelize-nested-set#readme"
}