-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 KB
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
{
"name": "myHealth360",
"version": "0.0.1",
"description": "myHealth360",
"engines": {
"node": "6.9.x",
"npm": "3.10.x"
},
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "mocha test --recursive",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive",
"lint": "npm-run-all -c -s lint:es lint:es:out lint:md",
"lint:es": "eslint . -f stylish || exit 0",
"lint:es:out": "eslint . -o ./lint/eslint.html -f html || exit 0",
"lint:es:fix": "eslint . --fix || exit 0",
"lint:md": "markdownlint ./README.md || exit 0",
"docs": "jsdoc -c .jsdoc.json -d public/docs/code -t ./node_modules/ink-docstrap/template -R README.md -r .",
"postinstall": "npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nci-ats/myHealth360"
},
"keywords": [
"nci",
"nci-ats",
"hackathon",
"agile",
"api",
"node",
"express"
],
"author": "NCI",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/nci-ats/myHealth360/issues"
},
"homepage": "https://github.com/nci-ats/myHealth360#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"istanbul": "^0.4.5",
"markdownlint-cli": "^0.2.0",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.2",
"supertest": "^3.0.0"
},
"dependencies": {
"async": "^2.2.0",
"aws-sdk": "^2.32.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.1",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"file-stream-rotator": "^0.1.0",
"helmet": "^3.4.1",
"include": "^1.1.0",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.4.3",
"jsonwebtoken": "^7.3.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"morgan": "^1.8.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"request": "^2.81.0"
}
}