This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
forked from evanshortiss/rhmap-express-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 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
{
"name": "rhmap-express-template",
"version": "0.1.0",
"description": "A Red Hat Mobile Cloud Application template that uses express.",
"main": "application.js",
"scripts": {
"start": "env NODE_PATH=. FH_USE_LOCAL_DB=true nodemon application.js | bunyan",
"jshint": "jshint lib/**/*.js",
"analysis": "plato -d analysis $(find ./lib -name \"*.js\" -not -name \"*.test.js\")",
"test": "npm run-script jshint && npm run unit && npm run-script coverage && npm run-script check-coverage",
"coverage": "env NODE_PATH=. NODE_ENV=test istanbul cover -x *.test.js _mocha $(find ./lib -name \"*.test.js\")",
"check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"unit": "env NODE_PATH=. NODE_ENV=test _mocha $(find ./lib -name \"*.test.js\")"
},
"repository": {
"type": "git",
"url": "https://github.com/evanshortiss/rhmap-express-template.git"
},
"keywords": [
"express",
"test",
"testing",
"example",
"rhmap",
"fh"
],
"author": "Evan Shortiss",
"license": "MIT",
"bugs": {
"url": "https://github.com/evanshortiss/rhmap-express-template/issues"
},
"homepage": "https://github.com/evanshortiss/rhmap-express-template",
"dependencies": {
"body-parser": "^1.15.0",
"express": "^4.13.4",
"fh-bunyan": "^0.1.3",
"fh-mbaas-api": "^5.5.6",
"lodash": "^4.6.1",
"safejson": "^1.0.1",
"verror": "^1.6.1"
},
"devDependencies": {
"bunyan": "^1.8.1",
"chai": "^3.5.0",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"nodemon": "^1.9.1",
"plato": "^1.5.0",
"proxyquire": "^1.7.4",
"sinon": "^1.17.3",
"supertest": "^0.9.2"
}
}