-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.63 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": "json-schema-sequelizer",
"version": "0.25.2",
"main": "lib/index.js",
"author": "Alvaro Cabrera <[email protected]>",
"description": "Sequelize models with JSON-Schema powers!",
"license": "MIT",
"types": "index.d.ts",
"files": [
"lib/*",
"cli/*",
"*.d.ts"
],
"engines": {
"node": "*"
},
"scripts": {
"dev": "npm test -- -w",
"lint": "eslint lib tests",
"test": "npm run test:unit --",
"test:ci": "npm run coverage:all && npm run report -- -r lcov",
"test:all": "npm run test:run tests && npm run report -- -r html",
"test:run": "NODE_ENV=test _mocha --exit --colors --recursive --watch-ignore '**/sandbox/**' -bR spec",
"test:unit": "npm run test:run tests --",
"coverage": "nyc -x '**/tests/**' -x '**/*.test.js'",
"coverage:all": "npm run coverage -- npm run test:all",
"coverage:unit": "npm run coverage -- npm run test:unit",
"codecov": "codecov --file=coverage/lcov.info -e TRAVIS_NODE_VERSION",
"report": "nyc report",
"_pretest": "npm run lint"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"pg": "^8.7.3",
"sqlite3": "^5.0.0",
"testdouble": "^3.16.6"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^10.1.0",
"@types/json-schema": "^7.0.9",
"@types/umzug": "^2.3.2",
"fast-glob": "^3.3.0",
"fs-extra": "^11.1.1",
"sequelize": "^6.32.1",
"type-fest": "^3.13.0",
"umzug": "^3.1.1",
"wargs": "^0.10.0"
}
}