-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
52
53
54
55
56
{
"name": "s3-url-exists",
"version": "1.0.2",
"description": "Check if URL exists in S3",
"main": "index.js",
"scripts": {
"start": "echo \"no entry point\"",
"test": "npm run lab",
"lab": "lab -v test/*.test.js -T node_modules/lab-babel --leaks --timeout 555555",
"build": "babel ./src/index.js -o ./dist/index.js --presets es2015"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bsociety/s3-url-exists.git"
},
"keywords": [
"s3",
"url",
"exists"
],
"author": "FelipeBarrosCruz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bsociety/s3-url-exists.git/issues"
},
"homepage": "https://github.com/Bsociety/s3-url-exists.git#readme",
"dependencies": {
"joi": "^8.4.1",
"lodash": "^4.13.1",
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"code": "^5.2.0",
"eslint": "^2.12.0",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"husky": "^0.15.0-rc.8",
"lab": "^15.3.0",
"lab-babel": "^1.1.1"
}
}