This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.04 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
{
"name": "openfab-membres",
"version": "1.0.0",
"description": "Application for our members profiles and subscriptions information.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node src/index.js",
"wait-start": "/wait && npm run start",
"watch": "nodemon --exec npm run start",
"wait-watch": "/wait && npm run watch",
"test": "NODE_ENV=test LOG_LEVEL=fatal node_modules/.bin/istanbul cover node_modules/.bin/_mocha test/index.js;",
"lint": "semistandard --verbose 'src/**/*.js' 'test/**/*.js'",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openfab-lab/app-membres.git"
},
"keywords": [
"lys",
"entities",
"database"
],
"author": "Openfab (https://github.com/openfab-lab)",
"bugs": {
"url": "https://github.com/openfab-lab/app-membres/issues"
},
"homepage": "https://github.com/openfab-lab/app-membres#readme",
"devDependencies": {
"nodemon": "1.12.1",
"istanbul": "1.1.0-alpha.1",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"mocha": "4.0.1",
"mocha-standard": "1.0.0",
"nock": "9.1.0",
"semistandard": "11.0.0"
},
"dependencies": {
"ajv": "6.1.1",
"bcrypt-nodejs": "0.0.3",
"bluebird": "3.5.1",
"body-parser": "1.18.2",
"bootstrap": "4.4.1",
"config": "1.28.1",
"cookie-session": "1.3.2",
"ejs": "2.5.8",
"express": "4.16.2",
"lodash": "4.17.15",
"mailgun-js": "0.21.0",
"md-mirror": "^1.0.0",
"node-sass-middleware": "0.11.0",
"passport": "0.4.0",
"pg": "7.4.1",
"pg-hstore": "2.3.2",
"qs": "6.5.0",
"request": "2.88.0",
"request-promise": "4.2.2",
"saga-logger": "0.0.8",
"saga-managed-error": "1.0.0",
"sequelize": "4.32.2",
"sequelize-cli": "5.5.1",
"serve-favicon": "2.4.5",
"shortid": "2.2.13",
"svg-captcha": "^1.4.0"
},
"semistandard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
}
}