-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "json-schema-sequelizer",
"version": "0.21.0",
"main": "lib/index.js",
"author": "Alvaro Cabrera <[email protected]>",
"description": "Sequelize models with JSON-Schema powers!",
"license": "MIT",
"files": [
"lib/*",
"cli/*"
],
"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 --recursive -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.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.8.0",
"minimist": ">=0.2.1",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"sqlite3": "^4.1.0"
},
"optionalDependencies": {
"pg": "^8.1.0",
"pg-native": "^3.0.0"
},
"dependencies": {
"fs-extra": "^9.0.0",
"glob": "^7.1.2",
"json-schema-ref-parser": "^9.0.1",
"sequelize": "^5.8.11",
"umzug": "^2.0.1",
"wargs": "^0.9.1"
}
}