-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.2 KB
/
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
48
49
50
51
52
53
54
55
56
57
{
"name": "signed-url",
"description": "library for signing and validating urls",
"version": "1.0.3",
"author": "Andrew Harris <[email protected]>",
"license": "BSD",
"main": "src/index.js",
"files": [
"/src"
],
"scripts": {
"coverage": "c8 npm test",
"pretest": "semistandard",
"test": "mocha --recursive test",
"watch": "mocha --recursive --watch test",
"docs": "jsdoc2md index.js"
},
"homepage": "https://github.com/noblesamurai/node-signed-url",
"repository": {
"type": "git",
"url": "git://github.com/noblesamurai/node-signed-url.git"
},
"bugs": {
"url": "https://github.com/noblesamurai/node-signed-url/issues"
},
"dependencies": {
"abind": "^1.0.5",
"http-errors": "^1.7.3"
},
"devDependencies": {
"c8": "^7.7.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"jsdoc-to-markdown": "^5.0.1",
"mocha": "^6.2.1",
"semistandard": "*",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0"
},
"keywords": [],
"c8": {
"include": [
"src"
],
"reporter": [
"lcov",
"text"
],
"all": true
},
"semistandard": {
"env": [
"mocha"
]
}
}