-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"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 <[email protected]>",
"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"
}
}