-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·63 lines (63 loc) · 1.74 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
{
"name": "brapi",
"main": "bin/www",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "npm run test-unit",
"test-v1_3": "npm run test-unit-v1_3",
"test-unit": "NODE_ENV=test mocha --exit 'components/**/v1.3/*.spec.js'",
"test-basic": "NODE_ENV=test mocha --exit 'components/**/helpers/*.spec.js'",
"coverage": "nyc npm test;",
"html-report": "nyc --reporter=html npm test;google-chrome-stable coverage/index.html",
"build": "babel src/ -d lib/",
"prepublish": "npm run build",
"flow": "flow"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"cookie-parser": "~1.4.3",
"dateformat": "^2.0.0",
"debug": "^4.1.1",
"express": "^4.16.3",
"express-myconnection": "^1.0.4",
"express-session": "^1.15.6",
"glob": "^7.1.2",
"graph-data-structure": "^1.8.0",
"greenlock-express": "^2.7.6",
"greenlock-store-fs": "^3.0.2",
"hoek": "^5.0.3",
"jsdom": "^13.2.0",
"json-to-table": "^4.1.0",
"jsonwebtoken": "^8.4.0",
"jstransformer": "^1.0.0",
"marked": "^0.3.19",
"moment": "^2.22.2",
"morgan": "^1.9.1",
"mysql": "^2.17.1",
"mysql2": "^1.6.5",
"npm": "^6.5.0",
"oauth2-server": "^3.0.1",
"object-hash": "^1.3.0",
"passport": "^0.3.2",
"passport-oauth2": "^1.3.0",
"path": "^0.12.7",
"pug": "^2.0.0-beta6",
"request": "^2.87.0",
"sequelize": "^4.42.0",
"serve-favicon": "^2.5.0",
"svg-world-map": "^1.0.0",
"vdom-to-html": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.102.0",
"mocha": "^5.2.0",
"nyc": "^13.2.0",
"sinon": "^7.2.2"
}
}