-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.9 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "epilepsy-portal",
"version": "0.1.0",
"description": "Epilepsy Portal",
"main": "index.js",
"scripts": {
"check": "npm outdated && nsp check && bower list",
"documentation": "jsdoc --recurse api controller model rule task --destination documentation",
"init": "node task/init",
"postinstall": "bower install",
"lint": "eslint . view/**/*.hbs --inline-config=false --quiet && remark *.md .github/*.md --quiet && stylelint view/stylesheet/*.css",
"lint-fix": "eslint . --fix --inline-config=false",
"log": "pm2 logs",
"preseed": "node task/sync",
"seed": "node task/seed",
"postseed": "node task/user",
"prestart": "jsonlint config.json --validate config-schema.json --quiet",
"start": "node task/start-dashboard && node task/start-scheduler",
"poststart": "pm2 ls",
"start-dashboard": "node task/start-dashboard",
"start-scheduler": "node task/start-scheduler",
"status": "pm2 ls",
"stop": "node task/stop-dashboard && node task/stop-scheduler",
"poststop": "pm2 ls",
"stop-dashboard": "node task/stop-dashboard",
"stop-scheduler": "node task/stop-scheduler",
"sync": "node task/sync",
"test": "env TEST=true nyc ava */*-test/*.js --timeout=15s",
"preuser": "node task/createUserSchema",
"user": "node task/user",
"validate": "jsonlint config.json --validate config-schema.json --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chintanallstarz/Epilepsy-Portal.git"
},
"keywords": [
"medical",
"epilepsy",
"portal"
],
"author": "Arizona State University",
"license": "UNLICENSED",
"private": true,
"bugs": {
"url": "https://github.com/chintanallstarz/Epilepsy-Portal/issues"
},
"homepage": "https://github.com/chintanallstarz/Epilepsy-Portal#readme",
"dependencies": {
"boom": "^3.1.2",
"bower": "^1.7.9",
"good": "^7.0.0",
"good-file": "^6.0.0",
"good-squeeze": "^3.0.1",
"handlebars": "^4.0.5",
"hapi": "^13.3.0",
"hapi-auth-basic": "^4.1.0",
"inert": "^3.2.0",
"joi": "^8.0.5",
"moment": "^2.13.0",
"mysql": "^2.10.2",
"sequelize": "^3.22.0",
"vision": "^4.1.0"
},
"optionalDependencies": {
"bcrypt": "^0.8.6"
},
"devDependencies": {
"ava": "^0.14.0",
"eslint": "^2.9.0",
"eslint-plugin-ava": "^2.2.1",
"eslint-plugin-html": "^1.4.0",
"eslint-plugin-promise": "^1.1.0",
"jsdoc": "^3.4.0",
"jsonlint": "^1.6.2",
"nsp": "^2.3.2",
"nyc": "^6.4.2",
"pm2": "^1.1.3",
"proxyquire": "^1.7.4",
"read": "^1.0.7",
"remark": "^4.2.2",
"remark-lint": "^3.2.1",
"remark-validate-links": "^3.0.0",
"sinon": "^1.17.3",
"stylelint": "^6.2.2"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.8.0"
},
"nyc": {
"exclude": [
"bcrypt-shim.js",
"model",
"controller/handler-test",
"controller/helper-test"
]
}
}