-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 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
{
"name": "auth0-extension-s3-tools",
"version": "1.1.1",
"description": "A set of tools and utilities to simplify the development of Auth0 Extensions with Amazon S3.",
"main": "src/index.js",
"devDependencies": {
"autochecker": "^0.9.2",
"aws-sdk-mock": "1.6.1",
"eslint": "^3.16.1",
"eslint-config-auth0-base": "^12.0.0",
"eslint-plugin-import": "^2.2.0",
"faucet": "0.0.1",
"nock": "9.0.9",
"nyc": "10.1.2",
"tape": "4.6.3"
},
"scripts": {
"release": "git tag $npm_package_version && git push && git push --tags && npm publish",
"lint:js": "eslint --ignore-path .gitignore --ignore-pattern webpack .",
"test": "./node_modules/tape/bin/tape tests/**/*.js | ./node_modules/faucet/bin/cmd.js",
"test:docker": "./node_modules/autochecker/cli.js 4.4.5 6.3.1",
"test:coverage": "./node_modules/nyc/bin/nyc.js ./node_modules/tape/bin/tape tests/**/*.js | ./node_modules/faucet/bin/cmd.js && ./node_modules/nyc/bin/nyc.js report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-extensions/auth0-extension-s3-tools.git"
},
"keywords": [
"auth0",
"extensions",
"aws",
"s3",
"webtask"
],
"author": "Auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0-extensions/auth0-extension-s3-tools/issues"
},
"homepage": "https://github.com/auth0-extensions/auth0-extension-s3-tools#readme",
"dependencies": {
"auth0-extension-tools": "^0.9.0",
"aws-sdk": "2.5.3",
"bluebird": "3.4.1"
}
}