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-09-28 23:54:19 +02:00
|
|
|
"bin": {
|
2016-09-29 22:50:55 +02:00
|
|
|
"unleash": "./bin/unleash.js"
|
2016-09-28 23:54:19 +02:00
|
|
|
},
|
2016-06-18 09:19:57 +02:00
|
|
|
"scripts": {
|
|
|
|
"db-migrate-and-start": "npm run db-migrate && npm run start",
|
2016-09-28 23:47:31 +02:00
|
|
|
"start": "NODE_ENV=production node server-impl.js",
|
2016-06-18 09:19:57 +02:00
|
|
|
"test": "echo 'TODO add server tests'; exit 0;",
|
|
|
|
"test:ci": "npm run test"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-09-28 23:54:19 +02:00
|
|
|
"commander": "^2.9.0",
|
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
|
|
|
},
|
2016-09-28 23:54:19 +02:00
|
|
|
"devDependencies": {}
|
2016-06-18 09:19:57 +02:00
|
|
|
}
|