2016-06-18 09:19:57 +02:00
|
|
|
{
|
|
|
|
"name": "unleash-server",
|
|
|
|
"description": "unleash your features",
|
2016-06-18 21:24:01 +02:00
|
|
|
"version": "1.0.0-alpha.2",
|
2016-06-18 09:19:57 +02:00
|
|
|
"keywords": [
|
|
|
|
"unleash",
|
|
|
|
"feature toggle",
|
|
|
|
"feature",
|
|
|
|
"toggle"
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
"server.js",
|
|
|
|
"README.md",
|
|
|
|
"LICENSE"
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "ssh://git@github.com:finn-no/unleash.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/finn-no/unleash/issues"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": "6"
|
|
|
|
},
|
2016-06-19 10:47:09 +02:00
|
|
|
"main": "./server.js",
|
2016-06-18 09:19:57 +02:00
|
|
|
"scripts": {
|
|
|
|
"db-migrate-and-start": "npm run db-migrate && npm run start",
|
|
|
|
"start": "NODE_ENV=production node server.js",
|
|
|
|
"test": "echo 'TODO add server tests'; exit 0;",
|
|
|
|
"test:ci": "npm run test"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-06-18 21:24:01 +02:00
|
|
|
"unleash-api": "1.0.0-alpha.2",
|
|
|
|
"unleash-frontend": "1.0.0-alpha.2"
|
2016-06-18 09:19:57 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|