mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
43ff5732aa
Please note that scripts and webpack is moved from devDependences to dependencies. This is due to heroku running the build process in production mode.
64 lines
2.0 KiB
JSON
64 lines
2.0 KiB
JSON
{
|
|
"name": "unleash-server",
|
|
"description": "unleash your features",
|
|
"version": "0.0.1",
|
|
"keywords": [
|
|
"unleash",
|
|
"feature toggle",
|
|
"feature",
|
|
"toggle"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "ssh://git@github.com:finn-no/unleash.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/finn-no/unleash/issues"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "NODE_ENV=production node server.js",
|
|
"build": "./node_modules/.bin/webpack",
|
|
"dev": "NODE_ENV=development supervisor --ignore ./node_modules/,./public/js server.js",
|
|
"test": "jshint server.js lib test && jsxhint public/js/**/*.jsx && mocha test test/* && npm run coverage",
|
|
"tdd": "mocha --watch test test/*",
|
|
"test-bamboo-ci": "mocha test test/*",
|
|
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
|
|
"coverage-report": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
|
|
"postinstall": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"any-db": "2.1.0",
|
|
"any-db-postgres": "2.1.3",
|
|
"bluebird": "2.2.2",
|
|
"body-parser": "1.4.3",
|
|
"db-migrate": "0.7.1",
|
|
"errorhandler": "1.1.1",
|
|
"express": "4.9.8",
|
|
"express-validator": "2.6.0",
|
|
"ini": "1.3.0",
|
|
"log4js": "0.6.21",
|
|
"nconf": "0.6.9",
|
|
"jsxhint": "0.4.15",
|
|
"jsx-loader": "^0.12.0",
|
|
"react": "^0.12.0",
|
|
"reqwest": "^1.1.4",
|
|
"webpack": "^1.4.9",
|
|
"webpack-dev-middleware": "^1.0.11",
|
|
"pg": "3.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "1.9.1",
|
|
"coveralls": "^2.11.2",
|
|
"istanbul": "0.3.2",
|
|
"jshint": "2.5.2",
|
|
"mocha": "1.20.1",
|
|
"mocha-lcov-reporter": "0.0.1",
|
|
"mockery": "1.4.0",
|
|
"pre-commit": "0.0.9",
|
|
"supertest": "0.13.0",
|
|
"supervisor": "0.6.0",
|
|
"xmlbuilder": "2.4.4"
|
|
}
|
|
}
|