-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 844 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 844 Bytes
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
{
"name": "@versium/reach-api-sdk-node",
"version": "1.1.1",
"description": "Versium REACH API Client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"start": "tsc -w",
"test": "npm run build && node --test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VersiumAnalytics/reach-api-sdk-node.git"
},
"author": "Versium Analytics",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/VersiumAnalytics/reach-api-sdk-node/issues"
},
"homepage": "https://github.com/VersiumAnalytics/reach-api-sdk-node#readme",
"devDependencies": {
"@types/node": "^18.14.1",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
},
"dependencies": {
"node-fetch": "^3.3.0"
}
}