-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
90 lines (90 loc) · 2.84 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "pipedrive",
"version": "23.4.2",
"description": "Pipedrive REST client for NodeJS",
"license": "MIT",
"main": "dist/index.js",
"homepage": "https://developers.pipedrive.com",
"repository": {
"type": "git",
"url": "git+https://github.com/pipedrive/client-nodejs"
},
"scripts": {
"build": "babel src -d dist",
"prepack": "npm run build",
"test": "npm run test:functional",
"test:functional:start": "npm run test:functional -- --start-environment",
"test:functional:stop": "npm run test:functional -- --stop-environment",
"test:functional": "node ./test/functional/environment.js",
"test:coverage": "npm run test:functional -- --collectCoverage",
"sonar": "pipedrive-sonar-scanner",
"lint-staged": "lint-staged",
"version": "changelog-updater && git add CHANGELOG.md"
},
"browser": {
"fs": false
},
"dependencies": {
"lodash": "^4.17.21",
"superagent": "^7.1.3",
"@babel/runtime": "^7.22.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.1.0",
"changelog-updater": "^2.0.3",
"eslint": "^8.27.0",
"eslint-config-pipedrive": "^13.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.1.5",
"expect.js": "^0.3.1",
"get-port": "^5.1.1",
"jest": "^27.0.0",
"jest-environment-node": "^27.4.4",
"lint-staged": "^13.0.3",
"minimist": "^1.2.5",
"mocha": "^10.2.0",
"msw": "^0.48.2",
"pre-commit": "^1.2.2",
"regenerator-runtime": "^0.13.7",
"shelljs": "^0.8.4",
"sinon": "^7.2.0"
},
"files": [
"dist"
],
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
},
"pre-commit": [
"lint-staged",
"test",
"build"
],
"publishConfig": {
"access": "public"
}
}