-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 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
{
"name": "uisp-crm-api",
"version": "2.0.0",
"description": "TypeScript client library for UISP CRM API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "ts-node src/index.ts",
"testing": "ts-node src/testing.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "npm run build",
"example:quick-start": "ts-node examples/quick-start.ts",
"example:usage": "ts-node examples/usage-examples.ts",
"example:services": "ts-node examples/services-examples.ts",
"example:service-attributes": "ts-node examples/service-attributes-test.ts"
},
"keywords": [
"uisp",
"crm",
"api",
"typescript",
"client",
"ubiquiti"
],
"author": "Diego Massanti <massanti@gmail.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^22.15.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.5.4"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/diegomax/uisp.git"
},
"bugs": {
"url": "https://github.com/diegomax/uisp/issues"
},
"homepage": "https://github.com/diegomax/uisp#readme"
}