-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 926 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
{
"name": "@d2l/node-superagent-oauth-body-hash",
"version": "0.3.0",
"description": "A superagent plugin to sign requests using OAuth 1.0a and including body hash",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"mocha": "mocha ./test",
"test": "istanbul cover -R ./node_modules/mocha/bin/_mocha -- --recursive ./test",
"check-style": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/node-superagent-oauth-body-hash"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^2.5.1",
"eslint-config-brightspace": "^0.2.0",
"express": "4.13.4",
"istanbul": "0.4.0",
"mocha": "2.4.5",
"rewire": "2.5.1",
"sinon": "1.17.3",
"superagent": "1.8.3"
},
"dependencies": {
"crypto-js": "3.1.6",
"oauth-signature": "1.3.1",
"uuid": "2.0.1"
}
}