-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "node-strategy-pattern",
"version": "1.0.0",
"description": "NodeJS strategy design pattern",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "cross-env NODE_ENV=test mocha src/tests/*.test.js",
"test:watch": "cross-env NODE_ENV=test mocha src/tests/*.test.js -w",
"test:coverage": "cross-env NODE_ENV=test nyc --reporter=html mocha src/tests/*.test.js --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rchuluc/node-strategy-pattern.git"
},
"keywords": [
"design pattern",
"strategy",
"GOF"
],
"author": "rchuluc",
"license": "ISC",
"bugs": {
"url": "https://github.com/rchuluc/node-strategy-pattern/issues"
},
"homepage": "https://github.com/rchuluc/node-strategy-pattern#readme",
"dependencies": {
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^6.0.1",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^6.0.0",
"bcrypt": "^5.0.0",
"boom": "^7.3.0",
"dotenv": "^8.2.0",
"faker": "^4.1.0",
"hapi-auth-jwt2": "^10.1.0",
"hapi-swagger": "^13.0.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^7.1.1",
"mongoose": "^5.9.10",
"pg": "^8.0.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.6"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"nyc": "^15.0.1"
}
}