|
1 | 1 | { |
2 | 2 | "name": "sequelize-test-helpers", |
3 | | - "version": "1.2.2", |
| 3 | + "version": "1.2.3", |
4 | 4 | "description": "A collection of utilities to help with unit-testing sequelize models", |
5 | 5 | "author": "Dave Sag <[email protected]>", |
6 | 6 | "type": "commonjs", |
|
29 | 29 | "test": "npm run test:unit", |
30 | 30 | "test:unit": "NODE_ENV=test mocha ./test/unit/ --require ./test/unitTestHelper.js --recursive", |
31 | 31 | "test:unit:cov": "NODE_ENV=test nyc mocha ./test/unit/ --require ./test/unitTestHelper.js --recursive", |
32 | | - "test:mutants": "NODE_ENV=test npx stryker run" |
| 32 | + "test:mutants": "NODE_ENV=test npx stryker run", |
| 33 | + "snyk-protect": "snyk protect" |
33 | 34 | }, |
34 | 35 | "repository": { |
35 | 36 | "type": "git", |
|
49 | 50 | "chai" |
50 | 51 | ], |
51 | 52 | "devDependencies": { |
52 | | - "@stryker-mutator/core": "^2.4.0", |
53 | | - "@stryker-mutator/javascript-mutator": "^2.4.0", |
54 | | - "@stryker-mutator/mocha-framework": "^2.4.0", |
55 | | - "@stryker-mutator/mocha-runner": "^2.4.0", |
56 | | - "ajv": "^6.10.2", |
| 53 | + "@stryker-mutator/core": "^3.3.1", |
| 54 | + "@stryker-mutator/javascript-mutator": "^3.3.1", |
| 55 | + "@stryker-mutator/mocha-framework": "^3.3.1", |
| 56 | + "@stryker-mutator/mocha-runner": "^3.3.1", |
| 57 | + "ajv": "^6.12.3", |
57 | 58 | "chai": "^4.2.0", |
58 | 59 | "chai-as-promised": "^7.1.1", |
59 | | - "eslint": "^6.8.0", |
60 | | - "eslint-config-prettier": "^6.9.0", |
61 | | - "eslint-config-standard": "^14.1.0", |
62 | | - "eslint-plugin-import": "^2.19.1", |
63 | | - "eslint-plugin-mocha": "^6.2.2", |
64 | | - "eslint-plugin-node": "^11.0.0", |
65 | | - "eslint-plugin-prettier": "^3.1.2", |
| 60 | + "eslint": "^7.4.0", |
| 61 | + "eslint-config-prettier": "^6.11.0", |
| 62 | + "eslint-config-standard": "^14.1.1", |
| 63 | + "eslint-plugin-import": "^2.22.0", |
| 64 | + "eslint-plugin-mocha": "^7.0.1", |
| 65 | + "eslint-plugin-node": "^11.1.0", |
| 66 | + "eslint-plugin-prettier": "^3.1.4", |
66 | 67 | "eslint-plugin-promise": "^4.2.1", |
67 | 68 | "eslint-plugin-standard": "^4.0.1", |
68 | | - "husky": "^3.1.0", |
69 | | - "lint-staged": "^9.5.0", |
70 | | - "mocha": "^6.2.2", |
71 | | - "nyc": "^15.0.0", |
72 | | - "prettier": "^1.19.1", |
| 69 | + "husky": "^4.2.5", |
| 70 | + "lint-staged": "^10.2.11", |
| 71 | + "mocha": "^8.0.1", |
| 72 | + "nyc": "^15.1.0", |
| 73 | + "prettier": "^2.0.5", |
73 | 74 | "proxyquire": "^2.1.3", |
74 | | - "sinon": "^8.0.1", |
75 | | - "sinon-chai": "^3.4.0" |
| 75 | + "sinon": "^9.0.2", |
| 76 | + "sinon-chai": "^3.5.0", |
| 77 | + "snyk": "^1.360.0" |
76 | 78 | }, |
77 | 79 | "peerDependencies": { |
78 | 80 | "chai": ">= 4", |
|
81 | 83 | "prettier": { |
82 | 84 | "semi": false, |
83 | 85 | "singleQuote": true, |
84 | | - "proseWrap": "never" |
| 86 | + "proseWrap": "never", |
| 87 | + "arrowParens": "avoid", |
| 88 | + "trailingComma": "none" |
85 | 89 | }, |
86 | 90 | "lint-staged": { |
87 | 91 | "**/*.{js,json,md}": [ |
88 | | - "prettier --write", |
89 | | - "git add" |
| 92 | + "prettier --write" |
90 | 93 | ] |
91 | 94 | }, |
92 | 95 | "husky": { |
|
113 | 116 | ], |
114 | 117 | "all": true, |
115 | 118 | "cache": true |
116 | | - } |
| 119 | + }, |
| 120 | + "snyk": true |
117 | 121 | } |
0 commit comments