-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "parse-s3-url",
"description": "Re-sign potentially already signed S3 urls.",
"version": "1.0.7",
"author": "Tim Allen <[email protected]>",
"license": "BSD",
"main": "src/index.js",
"scripts": {
"coverage": "c8 npm test",
"pretest": "semistandard --env mocha",
"test": "mocha --recursive test",
"watch": "mocha --recursive --watch test",
"docs": "jsdoc2md index.js"
},
"homepage": "https://github.com/noblesamurai/parse-s3-url",
"repository": {
"type": "git",
"url": "git://github.com/noblesamurai/parse-s3-url.git"
},
"bugs": {
"url": "https://github.com/noblesamurai/parse-s3-url/issues"
},
"dependencies": {
"c8": "^7.7.3"
},
"devDependencies": {
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "~3.3.0",
"semistandard": "*"
},
"keywords": [],
"c8": {
"exclude": [
"coverage",
"test"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true
}
}