-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
47 lines (47 loc) · 1019 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "nsrestlet",
"version": "2.0.1",
"description": "A module to help you create and use connections to your Netsuite Restlets.",
"main": "nsrestlet.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --timeout=300000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint nsrestlet.js"
},
"keywords": [
"netsuite",
"restlet",
"oauth",
"token",
"based",
"authentication",
"tba",
"ns",
"nlauth"
],
"author": "Michael E. Pope",
"homepage": "http://nsrestlet.surge.sh/",
"license": "MIT",
"dependencies": {
"oauth-1.0a": "^2.2.5",
"qs": "^6.7.0",
"request": "^2.88.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
"env2": "^2.2.2",
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"nyc": "^14.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/MichaelEPope/nsrestlet.git"
},
"nyc": {
"exclude": [
"secret.js",
"test.js"
]
}
}