-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
78 lines (78 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
{
"name": "server",
"version": "0.0.0",
"description": "Laverna server",
"keywords": [
"express",
"socket",
"mongoose",
"jsonwebtoken"
],
"license": "MPL-2.0",
"main": "server.js",
"homepage": "https://github.com/Laverna/lavera-server#readme",
"repository": {
"type": "git",
"url": "https://github.com/Laverna/laverna-server.git"
},
"bugs": {
"url": "https://github.com/Laverna/laverna-server/issues"
},
"scripts": {
"start": "nodemon ./server.js",
"debug": "cross-env NODE_ENV=development ./node_modules/.bin/nodemon --inspect ./server.js",
"test": "cross-env NODE_ENV=test node -r dotenv/config test/index.js | faucet",
"test:watch": "watch 'npm test'",
"cover": "nyc --reporter=lcov --require babel-register --require babel-polyfill npm run test && nyc report",
"cover:check": "npm run cover && nyc check-coverage --lines 95 --functions 95 --branches 90",
"lint": "eslint -c ./.eslintrc.js {app,config,server.js}",
"jsdoc": "jsdoc {app,config,server.js} -r -d _dev/jsdoc"
},
"babel": {
"presets": [
"env"
]
},
"nyc": {
"report-dir": "_dev/cover",
"include": [
"app/**/*.js",
"config/**/*.js"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"cross-env": "^5.0.5",
"eslint": "^4.8.0",
"faucet": "0.0.1",
"glob": "^7.1.2",
"jsdoc": "^3.5.5",
"nise": "^1.2.2",
"nodemon": "^1.12.1",
"nyc": "^11.2.1",
"proxyquire": "^1.8.0",
"sinon": "^4.0.0",
"sinon-mongoose": "^2.0.2",
"socket.io-client": "^2.0.3",
"supertest": "^3.0.0",
"tape": "^4.8.0",
"watch": "^1.0.2"
},
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"deb": "^0.2.1",
"dotenv": "^4.0.0",
"express": "^4.16.1",
"helmet": "^3.8.2",
"jsonwebtoken": "^8.0.1",
"mongoose": "^5.0.2",
"morgan": "^1.9.0",
"openpgp": "^2.5.11",
"socket.io": "^2.0.3",
"underscore": "^1.8.3",
"validator": "^9.0.0"
}
}