-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "@sphericalelephant/exseq",
"version": "3.7.4",
"description": "Express based automatic REST generator for Sequelize.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "NODE_ENV=test mocha",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary -- mocha test/ --exit",
"test-ci": "NODE_ENV=test nyc --reporter=lcov -- mocha test/ --exit -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"author": "Patrick Sturm <[email protected]> (https://sphericalelephant.com/)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/SphericalElephant/ExSeq.git"
},
"dependencies": {
"ajv": "^6.10.0",
"express": "^4.16.4",
"lodash.get": "^4.4.2",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"lodash.pull": "^4.1.0"
},
"keywords": [
"express",
"sequelize",
"rest",
"autorest",
"generator",
"restful"
],
"engines": {
"node": ">=8.12",
"npm": ">=6.9.0"
},
"devDependencies": {
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^8.4.1",
"eslint-config-loopback": "^13.0.0",
"mocha": "^9.1.3",
"nyc": "^15.0.1",
"sequelize4": "npm:sequelize@^4.44.4",
"sequelize5": "npm:sequelize@^5.22.5",
"sequelize6": "npm:sequelize@^6.19.0",
"sinon": "^7.3.2",
"sqlite3": "^4.2.0",
"supertest": "^3.4.2",
"swagger-ui-express": "^4.0.7"
}
}