forked from ehmad11/netsuite-rest
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"name": "netsuite-api-client",
"version": "1.1.0",
"description": "Netsuite client for REST interface",
"keywords": [
"netsuite",
"suitetalk",
"rest",
"web",
"services",
"promise",
"suiteql"
],
"type": "module",
"author": "Julien Bras <julienbras@sidoine.org>",
"homepage": "https://github.com/julbrs/netsuite-api-client#readme",
"bugs": "https://github.com/julbrs/netsuite-api-client/issues",
"exports": {
".": "./dist/src/index.js"
},
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc --build --clean && tsc",
"test": "vitest",
"coverage": "vitest --coverage",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.0",
"@types/got": "^9.6.12",
"@vitest/coverage-v8": "^4.0.0",
"dotenv": "^17.0.0",
"typescript": "^6.0.0",
"vitest": "^4.0.0"
},
"dependencies": {
"got": "^15.0.0",
"oauth-1.0a": "^2.2.6"
},
"repository": {
"type": "git",
"url": "https://github.com/julbrs/netsuite-api-client.git"
},
"license": "MIT"
}