-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.46 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.46 KB
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
{
"name": "closecrm-node",
"version": "1.0.4",
"description": "Unofficial Close.com API client for Node.js with TypeScript support",
"main": "lib/close.com.js",
"types": "lib/close.com.d.ts",
"files": [
"lib/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "mocha test/closecom.test.js",
"test:integration": "mocha test/integration.test.js",
"test:manual": "node test/manual-test.js",
"test:all": "npm run test && npm run test:integration",
"test:watch": "mocha test/closecom.test.js --watch",
"lint": "eslint lib/",
"docs": "jsdoc -c jsdoc.json",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/timdev-ger/closecrm-node.git"
},
"keywords": [
"closecrm",
"close",
"close.com",
"close-crm",
"crm",
"sales",
"leads",
"contacts",
"api",
"api-client",
"sdk",
"client",
"rest",
"rest-api",
"typescript",
"nodejs",
"wrapper"
],
"author": "Tim Querengaesser <contact@timdev.info> (https://github.com/timdev-ger)",
"contributors": [
"Tim Querengaesser <contact@timdev.info>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/timdev-ger/closecrm-node/issues"
},
"homepage": "https://timdev.info",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"chai": "^4.3.0",
"eslint": "^8.0.0",
"jsdoc": "^4.0.0"
},
"dependencies": {}
}