-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 866 Bytes
/
package.json
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
{
"name": "suiteql",
"version": "1.0.8",
"description": "Run SQL queries against NetSuite using SuiteQL through SuiteTalk Rest Webservices",
"author": "Muhammad Ahmed <a@ehmad11.com> (https://ehmad11.com/)",
"homepage": "https://github.com/ehmad11/suiteql#readme",
"bugs": "https://github.com/ehmad11/suiteql/issues",
"main": "suiteql.js",
"scripts": {
"test": "jest --coverage",
"test-cov": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"netsuite",
"suiteql",
"query",
"nodejs",
"rest"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "ISC",
"dependencies": {
"netsuite-rest": "^1.0.9",
"stream": "0.0.2"
},
"devDependencies": {
"coveralls": "^3.1.0",
"dotenv": "^10.0.0",
"jest": "^26.6.3"
}
}