-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "healthiq-project",
"version": "1.0.0",
"description": "Technical Coding Project for Health IQ",
"main": "index.js",
"scripts": {
"lint": "eslint lib/**/*.js test/**/*.js",
"document": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"docs": "npm run document && open ./docs/healthiq-project/1.0.0/index.html",
"test": "npm run lint && nyc mocha --recursive",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"server": "node_modules/.bin/http-server",
"sim": "node lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shanemileham/healthIQ-project.git"
},
"author": "Shane Mileham",
"license": "MIT",
"bugs": {
"url": "https://github.com/shanemileham/healthIQ-project/issues"
},
"homepage": "https://github.com/shanemileham/healthIQ-project#readme",
"devDependencies": {
"chai": "*",
"codecov": "^1.0.1",
"eslint": "^3.15.0",
"eslint-config-google": "^0.7.1",
"http-server": "^0.9.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"minami": "^1.1.1",
"mocha": "*",
"nyc": "^10.0.0",
"sinon": "*"
},
"dependencies": {
"fs-promise": "^1.0.0"
}
}