-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
127 lines (127 loc) · 5.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "express-user-manager",
"version": "3.0.1",
"description": "A user management and authentication library for Express apps.",
"main": "src/index.js",
"scripts": {
"test": "npm run test:unit && npm run test:db:all && npm run test:e2e:all",
"test:watch": "npm test -- -w",
"test:coverage": "nyc npm test",
"test:unit": "mocha __tests__/app.test.js __tests__/utils/\"{,/**/}*.test.js\"",
"test:db": "mocha __tests__/databases/\"{,/**/}*.test.js\"",
"test:e2e": "npm run test:e2e:routes:default && npm run test:e2e:routes:custom",
"test:e2e:routes:custom": "mocha __tests__/routes-custom/\"{,/**/}*.test.js\"",
"test:e2e:routes:default": "mocha __tests__/routes-default/\"{,/**/}*.test.js\"",
"test:db:all": "npm run test:db:memory && npm run test:db:mongoose && npm run test:db:mysql && npm run test:db:sqlite",
"test:e2e:all": "npm run test:e2e:memory && npm run test:e2e:mongoose && npm run test:e2e:mysql && npm run test:e2e:sqlite",
"test:db:memory": "run-script-os",
"test:db:mongoose": "run-script-os",
"test:db:mysql": "run-script-os",
"test:db:sqlite": "run-script-os",
"test:e2e:memory": "run-script-os",
"test:e2e:mongoose": "run-script-os",
"test:e2e:mysql": "run-script-os",
"test:e2e:sqlite": "run-script-os",
"test:db:sequelize:nix": "DB_ADAPTER=sequelize npm run test:db",
"test:db:sequelize:win32": "set DB_ADAPTER=sequelize& npm run test:db",
"test:db:memory:nix": "DB_ENGINE=memory npm run test:db:sequelize:nix",
"test:db:memory:win32": "set DB_ENGINE=memory& npm run test:db:sequelize:win32",
"test:db:mongoose:nix": "DB_ADAPTER=mongoose DB_PORT=27017 DB_USERNAME='' npm run test:db",
"test:db:mongoose:win32": "set DB_ADAPTER=mongoose& set DB_PORT=27017& set DB_USERNAME=& npm run test:db",
"test:db:mysql:nix": "DB_ENGINE=mysql DB_PORT=3306 DB_USERNAME=root npm run test:db:sequelize:nix",
"test:db:mysql:win32": "set DB_ENGINE=mysql& set DB_PORT=3306& set DB_USERNAME=root& npm run test:db:sequelize:win32",
"test:db:sqlite:nix": "DB_ENGINE=sqlite DB_STORAGE_PATH=./.data/sqlite npm run test:db:sequelize:nix",
"test:db:sqlite:win32": "set DB_ENGINE=sqlite& set DB_STORAGE_PATH=./.data/sqlite& npm run test:db:sequelize:win32",
"test:e2e:sequelize:nix": "DB_ADAPTER=sequelize npm run test:e2e",
"test:e2e:sequelize:win32": "set DB_ADAPTER=sequelize& npm run test:e2e",
"test:e2e:memory:nix": "DB_ENGINE=memory npm run test:e2e:sequelize:nix",
"test:e2e:memory:win32": "set DB_ENGINE=memory& npm run test:e2e:sequelize:win32",
"test:e2e:mongoose:nix": "DB_ADAPTER=mongoose DB_PORT=27017 DB_USERNAME='' npm run test:e2e",
"test:e2e:mongoose:win32": "set DB_ADAPTER=mongoose& set DB_PORT=27017& set DB_USERNAME=& npm run test:e2e",
"test:e2e:mysql:nix": "DB_ENGINE=mysql DB_PORT=3306 DB_USERNAME=root npm run test:e2e:sequelize:nix",
"test:e2e:mysql:win32": "set DB_ENGINE=mysql& set DB_PORT=3306& set DB_USERNAME=root& npm run test:e2e:sequelize:win32",
"test:e2e:sqlite:nix": "DB_ENGINE=sqlite DB_STORAGE_PATH=./.data/sqlite npm run test:e2e:sequelize:nix",
"test:e2e:sqlite:win32": "set DB_ENGINE=sqlite& set DB_STORAGE_PATH=./.data/sqlite& npm run test:e2e:sequelize:win32",
"serve": "node ./src/server/index.js",
"serve:watch": "nodemon ./src/server/index.js",
"commit": "git-cz",
"lint": "./node_modules/.bin/eslint ./src",
"lint:fix": "npm run lint -- --fix",
"codecov": "codecov",
"draft-release": "npm run lint:fix && standard-version",
"draft-release:simulate": "npm run draft-release -- --dry-run",
"view-readme": "./node_modules/.bin/markdown-viewer -b",
"view-contributing": "./node_modules/.bin/markdown-viewer -f CONTRIBUTING.md -b",
"view-license": "./node_modules/.bin/markdown-viewer -f LICENSE.md -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplymichael/express-user-manager.git"
},
"keywords": [
"authentication",
"authorization",
"express",
"express-js",
"login",
"login-system",
"node",
"nodejs",
"registration",
"user",
"user-management-system",
"user-management"
],
"author": "simplymichael <simplymichaelorji@gmail.com> (https://github.com/simplymichael)",
"license": "MIT",
"bugs": {
"url": "https://github.com/simplymichael/express-user-manager/issues"
},
"homepage": "https://github.com/simplymichael/express-user-manager#readme",
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-http": "4.3.0",
"chai-spies": "1.0.0",
"codecov": "3.8.1",
"commitizen": "4.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.13.0",
"ghooks": "2.0.4",
"markdown-viewer": "1.0.1",
"mocha": "8.2.1",
"node-fetch": "2.6.1",
"nyc": "15.1.0",
"run-script-os": "1.1.3",
"standard-version": "9.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint && npm run test:coverage"
}
},
"dependencies": {
"bcrypt": "5.0.0",
"cookie-parser": "1.4.5",
"dotenv": "8.2.0",
"email-validator": "2.0.4",
"express": "4.17.1",
"express-session": "1.17.1",
"express-validator": "6.6.1",
"jsonwebtoken": "8.5.1",
"mariadb": "2.5.2",
"mongoose": "5.10.15",
"morgan": "1.10.0",
"mysql2": "2.2.5",
"nodemon": "2.0.6",
"pg": "8.5.1",
"pg-hstore": "2.3.3",
"random-bytes": "1.0.0",
"sequelize": "6.3.5",
"sqlite3": "5.0.0",
"tedious": "9.2.1"
}
}