-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.51 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-sign",
"version": "0.2.0",
"description": "AWS Signature Version 4",
"author": "yugasun",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"scripts": {
"build": "cross-env BABEL_ENV=production babel-node build/bundle.js umd,esm,cjs",
"test": "cross-env BABEL_ENV=test jest -c jest.config.js --rootDir=.",
"lint": "eslint --ext .js -f ./node_modules/eslint-friendly-formatter --fix src"
},
"dependencies": {
"querystring": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"chalk": "^2.4.2",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.18.0",
"fancy-log": "^1.3.3",
"jest": "^24.8.0",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3"
},
"keywords": [
"aws",
"signature"
],
"repository": {
"type": "git",
"url": "https://github.com/yugasun/aws4.git"
},
"license": "MIT"
}