Files
bitminer/ui/package.json
Tommy Parnell 414395b87d init
2017-01-11 21:29:12 -05:00

33 lines
791 B
JSON

{
"name": "ui",
"version": "0.0.1",
"private": true,
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"test": "mocha --recursive test",
"test:coverage": "nyc npm test",
"test:unit": "mocha --recursive test/middleware test/models test/routes",
"test:integration": "mocha --recursive test/integration"
},
"dependencies": {
"express": "^4.13.3",
"serve-favicon": "^2.3.0",
"morgan": "^1.6.1",
"cookie-parser": "^1.3.3",
"body-parser": "^1.13.3",
"ejs": "^2.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"debug": "^2.2.0",
"gulp": "^3.9.0",
"gulp-nodemon": "^2.0.2",
"gulp-livereload": "^3.8.0",
"gulp-plumber": "^1.0.0",
"mocha": "^3.0.2",
"nyc": "^10.0.0",
"supertest": "^2.0.0"
}
}