-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "facility360",
"version": "1.1.1",
"description": "A Node based 360Facility client SDK",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage --verbose --testPathIgnorePatterns \"integration.test.*\" --passWithNoTests",
"build": "tsc",
"watch": "tsc -w"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/apptreesoftware/facility360_nodesdk"
},
"engines": {
"node": ">=20.0.0"
},
"author": "AppTree Software",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"axios-logger": "2.6.1",
"axios-retry": "^3.1.9",
"bottleneck": "^2.19.5",
"dotenv": "^8.2.0",
"lodash": "4.17.20",
"moment": "^2.24.0",
"ts-node": "^9.0.0"
},
"prettier": {
"singleQuote": true,
"printWidth": 100
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/lodash": "4.14.168",
"@types/node": "^20.3.1",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^5.9.3"
}
}