This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "dynamodb-store",
"version": "1.2.0",
"description": "Implementation of a session storage using DynamoDB as an extension of the express-session middleware.",
"author": "Rafael Pinto <meuemail@posteo.pt>",
"main": "index.js",
"readmeFilename": "README.md",
"license": "MIT",
"url": "https://github.com/rafaelrpinto/dynamodb-store",
"bugs": {
"url": "https://github.com/rafaelrpinto/dynamodb-store/issues",
"email": "meuemail@posteo.pt"
},
"repository": {
"type": "git",
"url": "https://github.com/rafaelrpinto/dynamodb-store.git"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "better-npm-run test",
"testLocal": "better-npm-run testLocal",
"build": "rm -rf dist && NODE_ENV=production babel lib -d dist",
"precommit": "yarn run build && git add dist && yarn run testLocal"
},
"betterScripts": {
"testLocal": {
"command": "jest"
},
"test": {
"command": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
},
"dependencies": {
"express-session": "^1.15.5"
},
"optionalDependencies": {
"aws-sdk": "^2.100.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"better-npm-run": "^0.1.0",
"coveralls": "^2.13.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.6.2",
"flow-bin": "^0.69.0",
"flow-typed": "^2.4.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"uuid": "^3.1.0"
},
"files": [
"dist/",
"index.js"
],
"jest": {
"testEnvironment": "node",
"rootDir": "test",
"transform": {
"\\.js$": "babel-jest"
}
},
"keywords": [
"dynamo",
"dynamodb",
"session",
"session-store",
"express-session",
"express"
]
}