UNPKG

aws4-tiny

Version:

Tiny AWS Signature Version 4 library for the browser

52 lines (51 loc) 1.51 kB
{ "name": "aws4-tiny", "version": "1.0.0", "description": "Tiny AWS Signature Version 4 library for the browser", "files": [ "dist" ], "keywords": [ "aws4" ], "main": "dist/aws4.js", "repository": { "type": "git", "url": "https://github.com/emdgroup/aws4-tiny.git" }, "author": "Moritz Onken <onken@netcubed.de>", "scripts": { "build": "npm run build-dist && npm run build-test", "prepack": "rm -rf dist/ && npm run build-dist && npm run test-node", "test": "jest", "test-selenium": "jest selenium", "test-node": "jest node", "build-dist": "npm run concat-sjcl && webpack", "build-test": "webpack --config webpack.test.js && cp test/index.html dist/", "build-testsuite": "node scripts/testsuite", "concat-sjcl": "cd node_modules/sjcl/core/ && cat sjcl.js hmac.js sha256.js bitArray.js codecString.js codecHex.js exports.js > ../../../src/sjcl.js" }, "jest": { "testMatch": [ "<rootDir>/test/*.js" ], "bail": true }, "devDependencies": { "@babel/core": "^7.1.5", "@babel/preset-env": "^7.1.5", "aws4": "^1.8.0", "babel-core": "^7.0.0-bridge.0", "babel-loader": "^8.0.4", "eslint": "^5.9.0", "eslint-config-airbnb-base": "^13.1.0", "eslint-plugin-import": "^2.14.0", "jest": "^23.6.0", "selenium-webdriver": "^4.0.0-alpha.1", "sjcl": "^1.0.8", "source-map-loader": "^0.2.3", "url-lite": "^1.0.2", "webpack": "^4.25.1", "webpack-cli": "^3.1.2" } }