-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 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
52
53
54
55
56
57
58
59
60
61
{
"name": "node-s3-cognito",
"version": "1.0.5",
"description": "Allow AWS Cognito users access to S3 buckets via NodeJS",
"main": "index.js",
"scripts": {
"lint": "eslint \"**/*.js\" --ignore-path .gitignore",
"pretest": "npm install",
"preversion": "npm run test",
"version": "",
"postversion": "git push && git push --tags",
"test": "npm run lint && mocha",
"dev": "npm-watch",
"start": "node src/index.js"
},
"watch": {
"test": {
"patterns": [
"src",
"test",
"views"
],
"extensions": "js, json, pug"
}
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/invisiblegaudi/s3-explorer.git"
},
"keywords": [
"s3",
"nodejs",
"javascript"
],
"author": "john@invisiblearchitects.com",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/invisiblegaudi/s3-explorer/issues"
},
"homepage": "https://gitlab.com/invisiblegaudi/s3-explorer#readme",
"dependencies": {
"amazon-cognito-identity-js": "^3.2.0",
"aws-sdk": "^2.568.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"pug": "^2.0.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"mocha": "^6.2.2",
"mocha-tags": "^1.0.1",
"npm-watch": "^0.6.0"
}
}