-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"name": "ocs",
"version": "0.1.0",
"description": "ocs server",
"main": "index.js",
"scripts": {
"start": "pm2 startOrReload process.json --env production --update-env",
"test": "mocha ./*/tests/*.spec.js ./modules/*/tests/*.spec.js -R spec",
"cover": "istanbul cover _mocha ./*/tests/*.spec.js ./modules/*/tests/*.spec.js",
"lint": "eslint --fix ./",
"docs": "jsdoc -c jsdoc.conf.json",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"test:watch": "mocha ./*/tests/*.spec.js ./modules/*/tests/*.spec.js -R spec -w",
"lint:watch": "onchange ./ -e docs -e logs -e uploads -e coverage -- eslint ./",
"docs:watch": "onchange ./modules/ -- jsdoc -c jsdoc.conf.json",
"dev": "parallelshell 'nodemon' 'npm run lint:watch' 'npm run test:watch'"
},
"engines": {
"node": ">=8.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VismayStudios/ocs.git"
},
"author": {
"name": "Vismay Studios",
"url": "vismaystudios.org"
},
"license": "AGPL-3.0",
"contributors": [
{
"name": "Kanwar Ujjaval Singh",
"email": "[email protected]"
},
{
"name": "Prikshit Tekta",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/VismayStudios/ocs/issues"
},
"homepage": "https://vismaystudios.github.io/ocs/",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"jsonwebtoken": "^7.4.1",
"mongoose": "^4.11.3",
"morgan": "^1.8.2",
"mysql": "^2.13.0"
},
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"eslint": "^4.4.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.4",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.11.0",
"onchange": "^3.2.1",
"parallelshell": "^3.0.1",
"tui-jsdoc-template": "^1.2.2"
}
}