-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
{
"name": "aws-v4-sign-small",
"version": "1.1.1",
"description": "Size optimized library to perform AWS V4 request signing designed for use in the browser",
"main": "index.js",
"scripts": {
"test": "lab",
"pretest": "npm run lint",
"prepublish": "npm run bundle && npm run bundle-min",
"bundle-min": "rm -f dist/aws-v4-sign-small.min.js && browserify index.js | uglifyjs --compress --mangle - > dist/aws-v4-sign-small.min.js && gzip -k -f dist/aws-v4-sign-small.min.js",
"bundle": "rm -f dist/aws-v4-sign-small.js && browserify index.js -o dist/aws-v4-sign-small.js && gzip -k -f dist/aws-v4-sign-small.js",
"dev": "nodemon --exec npm run bundle && npm run bundle-min",
"lint": "standard | snazzy"
},
"author": "Noah Isaacson <[email protected]>",
"license": "ISC",
"devDependencies": {
"browserify": "^12.0.1",
"code": "^2.0.1",
"lab": "^7.3.0",
"nodemon": "^1.8.1",
"snazzy": "^2.0.1",
"standard": "^5.4.1",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"crypto-js": "^3.1.5",
"strict-uri-encode": "^1.0.2"
},
"standard": {
"ignore": [
"lib/vendor/",
"dist/"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nisaacson/aws-v4-sign-small.git"
},
"bugs": {
"url": "https://github.com/nisaacson/aws-v4-sign-small/issues"
},
"homepage": "https://github.com/nisaacson/aws-v4-sign-small#readme"
}