|
1 | 1 | { |
2 | 2 | "name": "pipedrive", |
3 | | - "version": "", |
| 3 | + "version": "24.0.0", |
4 | 4 | "description": "Pipedrive REST client for NodeJS", |
5 | 5 | "license": "MIT", |
6 | 6 | "homepage": "https://developers.pipedrive.com", |
|
25 | 25 | "test": "npm run test:functional", |
26 | 26 | "test:functional:start": "npm run test:functional -- --start-environment", |
27 | 27 | "test:functional:stop": "npm run test:functional -- --stop-environment", |
28 | | - "test:functional": "node ./test/functional/environment.js", |
| 28 | + "test:functional": "node ./test/config/environment.js", |
29 | 29 | "test:coverage": "npm run test:functional -- --collectCoverage", |
30 | 30 | "sonar": "pipedrive-sonar-scanner", |
31 | 31 | "lint-staged": "lint-staged", |
|
61 | 61 | "@babel/plugin-transform-runtime": "^7.12.1", |
62 | 62 | "@babel/preset-env": "^7.23.5", |
63 | 63 | "@babel/register": "^7.0.0", |
| 64 | + "@types/jest": "^29.5.14", |
64 | 65 | "@types/node": "^18.13.0", |
65 | 66 | "@types/qs": "^6.9.7", |
66 | 67 | "babel-eslint": "^10.1.0", |
|
69 | 70 | "eslint": "^8.27.0", |
70 | 71 | "eslint-config-pipedrive": "^13.0.0", |
71 | 72 | "eslint-plugin-import": "^2.27.5", |
72 | | - "eslint-plugin-jest": "^27.1.5", |
| 73 | + "eslint-plugin-jest": "^28.11.0", |
73 | 74 | "expect.js": "^0.3.1", |
74 | 75 | "get-port": "^5.1.1", |
75 | 76 | "jest": "^29.7.0", |
76 | 77 | "jest-environment-node": "^27.4.4", |
77 | 78 | "lint-staged": "^13.0.3", |
78 | 79 | "minimist": "^1.2.5", |
79 | 80 | "mocha": "^10.2.0", |
80 | | - "msw": "^2.0.10", |
| 81 | + "nock": "^13.5.6", |
81 | 82 | "pre-commit": "^1.2.2", |
82 | 83 | "regenerator-runtime": "^0.13.7", |
83 | 84 | "shelljs": "^0.8.4", |
84 | 85 | "sinon": "^7.2.0", |
85 | | - "ts-jest": "^29.1.1", |
86 | | - "typescript": "^4.9.5" |
| 86 | + "ts-jest": "^29.2.5", |
| 87 | + "typescript": "^4.9.5", |
| 88 | + "typescript-eslint": "^8.22.0" |
| 89 | + }, |
| 90 | + "lint-staged": { |
| 91 | + "*.{ts,js}": [ |
| 92 | + "eslint --fix" |
| 93 | + ] |
| 94 | + }, |
| 95 | + "pre-commit": [ |
| 96 | + "build", |
| 97 | + "lint-staged", |
| 98 | + "test" |
| 99 | + ], |
| 100 | + "publishConfig": { |
| 101 | + "access": "public" |
87 | 102 | } |
88 | 103 | } |
0 commit comments