Skip to content

Commit 0e077db

Browse files
Revert package.json changes
1 parent 35184f8 commit 0e077db

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ wwwroot/*.js
22
node_modules
33
typings
44
dist
5+
.idea

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pipedrive",
3-
"version": "",
3+
"version": "24.0.0",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",
@@ -25,7 +25,7 @@
2525
"test": "npm run test:functional",
2626
"test:functional:start": "npm run test:functional -- --start-environment",
2727
"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",
2929
"test:coverage": "npm run test:functional -- --collectCoverage",
3030
"sonar": "pipedrive-sonar-scanner",
3131
"lint-staged": "lint-staged",
@@ -61,6 +61,7 @@
6161
"@babel/plugin-transform-runtime": "^7.12.1",
6262
"@babel/preset-env": "^7.23.5",
6363
"@babel/register": "^7.0.0",
64+
"@types/jest": "^29.5.14",
6465
"@types/node": "^18.13.0",
6566
"@types/qs": "^6.9.7",
6667
"babel-eslint": "^10.1.0",
@@ -69,20 +70,34 @@
6970
"eslint": "^8.27.0",
7071
"eslint-config-pipedrive": "^13.0.0",
7172
"eslint-plugin-import": "^2.27.5",
72-
"eslint-plugin-jest": "^27.1.5",
73+
"eslint-plugin-jest": "^28.11.0",
7374
"expect.js": "^0.3.1",
7475
"get-port": "^5.1.1",
7576
"jest": "^29.7.0",
7677
"jest-environment-node": "^27.4.4",
7778
"lint-staged": "^13.0.3",
7879
"minimist": "^1.2.5",
7980
"mocha": "^10.2.0",
80-
"msw": "^2.0.10",
81+
"nock": "^13.5.6",
8182
"pre-commit": "^1.2.2",
8283
"regenerator-runtime": "^0.13.7",
8384
"shelljs": "^0.8.4",
8485
"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"
87102
}
88103
}

0 commit comments

Comments
 (0)