2014-10-20 13:03:43 +02:00
|
|
|
{
|
2016-11-10 15:52:49 +01:00
|
|
|
"name": "unleash-server",
|
2017-02-15 22:23:08 +01:00
|
|
|
"description": "Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.",
|
2019-01-28 12:30:32 +01:00
|
|
|
"version": "3.1.5",
|
2016-05-01 15:43:25 +02:00
|
|
|
"keywords": [
|
|
|
|
"unleash",
|
|
|
|
"feature toggle",
|
|
|
|
"feature",
|
|
|
|
"toggle"
|
|
|
|
],
|
2016-11-10 15:52:49 +01:00
|
|
|
"files": [
|
|
|
|
"lib",
|
2016-12-23 11:30:31 +01:00
|
|
|
"docs",
|
|
|
|
"bin",
|
2016-11-10 15:52:49 +01:00
|
|
|
"migrations",
|
2016-12-23 11:30:31 +01:00
|
|
|
"server.js",
|
|
|
|
"migrator.js"
|
2016-11-10 15:52:49 +01:00
|
|
|
],
|
2016-05-01 15:43:25 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-11-13 15:31:10 +01:00
|
|
|
"url": "ssh://git@github.com:unleash/unleash.git"
|
2016-05-01 15:43:25 +02:00
|
|
|
},
|
|
|
|
"bugs": {
|
2016-11-13 15:31:10 +01:00
|
|
|
"url": "https://github.com/unleash/unleash/issues"
|
2016-05-01 15:43:25 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2017-11-02 09:50:29 +01:00
|
|
|
"node": ">=8"
|
2016-05-01 15:43:25 +02:00
|
|
|
},
|
2016-08-22 15:12:05 +02:00
|
|
|
"license": "Apache-2.0",
|
2016-12-27 11:29:00 +01:00
|
|
|
"main": "./lib/server-impl.js",
|
2016-11-10 15:52:49 +01:00
|
|
|
"bin": {
|
|
|
|
"unleash": "./bin/unleash.js"
|
|
|
|
},
|
2016-05-01 15:43:25 +02:00
|
|
|
"scripts": {
|
2016-11-13 21:07:14 +01:00
|
|
|
"start": "node server.js",
|
2018-01-17 09:46:16 +01:00
|
|
|
"start:google": "node examples/google-auth-unleash.js",
|
2016-11-13 21:07:14 +01:00
|
|
|
"start:dev": "NODE_ENV=development supervisor --ignore ./node_modules/ server.js",
|
2016-11-10 15:52:49 +01:00
|
|
|
"start:dev:pg": "pg_virtualenv npm run start:dev:pg-chain",
|
|
|
|
"start:dev:pg-chain": "export DATABASE_URL=postgres://$PGUSER:$PGPASSWORD@localhost:$PGPORT/postgres ; db-migrate up && npm run start:dev",
|
2016-12-12 16:52:20 +01:00
|
|
|
"db-migrate": "db-migrate",
|
2017-06-28 14:10:32 +02:00
|
|
|
"lint": "eslint .",
|
2016-12-04 14:09:37 +01:00
|
|
|
"pretest": "npm run lint",
|
2017-08-04 16:03:15 +02:00
|
|
|
"test": "NODE_ENV=test PORT=4243 ava lib/*.test.js lib/**/*.test.js lib/**/**/*.test.js lib/**/**/**/*.test.js test",
|
2016-11-10 15:52:49 +01:00
|
|
|
"test:docker": "./scripts/docker-postgres.sh",
|
2016-11-13 15:41:35 +01:00
|
|
|
"test:watch": "npm run test -- --watch",
|
2016-11-10 15:52:49 +01:00
|
|
|
"test:pg-virtualenv": "pg_virtualenv npm run test:pg-virtualenv-chai",
|
|
|
|
"test:pg-virtualenv-chain": "export TEST_DATABASE_URL=postgres://$PGUSER:$PGPASSWORD@localhost:$PGPORT/postgres ; npm run db-migrate-testdb && npm test",
|
2016-11-13 15:41:35 +01:00
|
|
|
"test:coverage": "nyc npm run test",
|
2018-11-22 09:03:36 +01:00
|
|
|
"test:coverage-report": "nyc report --reporter=text-lcov | coveralls"
|
2016-11-10 15:52:49 +01:00
|
|
|
},
|
2016-11-13 21:06:28 +01:00
|
|
|
"nyc": {
|
|
|
|
"all": true,
|
|
|
|
"include": [
|
|
|
|
"bin/**/*.js",
|
|
|
|
"lib/**/*.js"
|
|
|
|
]
|
|
|
|
},
|
2016-11-10 15:52:49 +01:00
|
|
|
"dependencies": {
|
2019-01-28 12:23:05 +01:00
|
|
|
"async": "^2.6.1",
|
|
|
|
"commander": "^2.19.0",
|
2018-08-22 17:39:09 +02:00
|
|
|
"compression": "^1.7.3",
|
2017-11-02 10:01:44 +01:00
|
|
|
"cookie-parser": "^1.4.3",
|
2017-11-16 15:13:39 +01:00
|
|
|
"cookie-session": "^2.0.0-beta.3",
|
2019-01-28 12:23:05 +01:00
|
|
|
"db-migrate": "^0.11.5",
|
2018-04-10 12:16:54 +02:00
|
|
|
"db-migrate-pg": "^0.4.0",
|
2018-12-17 11:02:52 +01:00
|
|
|
"deep-diff": "^1.0.2",
|
2017-11-02 10:01:44 +01:00
|
|
|
"errorhandler": "^1.5.0",
|
2019-01-28 12:23:05 +01:00
|
|
|
"express": "^4.16.4",
|
|
|
|
"gravatar": "^1.8.0",
|
|
|
|
"install": "^0.12.2",
|
|
|
|
"joi": "^14.3.1",
|
|
|
|
"knex": "^0.16.3",
|
|
|
|
"log4js": "^4.0.0",
|
|
|
|
"moment": "^2.24.0",
|
2016-11-12 11:21:40 +01:00
|
|
|
"parse-database-url": "^0.3.0",
|
2019-01-28 12:23:05 +01:00
|
|
|
"pg": "^7.8.0",
|
2017-11-03 23:14:31 +01:00
|
|
|
"pkginfo": "^0.4.1",
|
2019-01-28 12:23:05 +01:00
|
|
|
"prom-client": "^11.2.1",
|
2018-12-17 11:01:41 +01:00
|
|
|
"prometheus-gc-stats": "^0.6.1",
|
2016-12-01 17:43:08 +01:00
|
|
|
"response-time": "^2.3.2",
|
2018-05-14 13:49:31 +02:00
|
|
|
"serve-favicon": "^2.5.0",
|
2019-01-19 11:52:37 +01:00
|
|
|
"unleash-frontend": "^3.1.4",
|
2019-01-28 12:23:05 +01:00
|
|
|
"yallist": "^3.0.3",
|
|
|
|
"yargs": "^12.0.5"
|
2016-05-01 15:43:25 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-12-17 10:54:19 +01:00
|
|
|
"@types/node": "^10.12.15",
|
2019-01-28 12:23:05 +01:00
|
|
|
"ava": "^1.2.0",
|
2018-12-17 10:54:19 +01:00
|
|
|
"coveralls": "^3.0.2",
|
|
|
|
"eslint": "^5.10.0",
|
2018-09-19 19:21:34 +02:00
|
|
|
"eslint-config-finn": "^3.0.1",
|
|
|
|
"eslint-config-finn-prettier": "^3.0.2",
|
2018-12-17 10:54:19 +01:00
|
|
|
"husky": "^1.2.1",
|
|
|
|
"lint-staged": "^8.1.0",
|
2018-10-08 11:35:06 +02:00
|
|
|
"lolex": "^3.0.0",
|
2018-11-22 09:00:27 +01:00
|
|
|
"nyc": "^13.1.0",
|
2019-01-28 12:23:05 +01:00
|
|
|
"passport": "^0.4.0",
|
|
|
|
"passport-google-auth": "^1.0.2",
|
2018-12-17 10:54:19 +01:00
|
|
|
"prettier": "^1.15.3",
|
|
|
|
"proxyquire": "^2.1.0",
|
2018-11-17 16:22:59 +01:00
|
|
|
"superagent": "^4.0.0",
|
2019-01-28 08:14:09 +01:00
|
|
|
"supertest": "^3.4.2",
|
2016-12-23 11:10:07 +01:00
|
|
|
"supervisor": "^0.12.0"
|
2017-06-28 14:10:32 +02:00
|
|
|
},
|
2017-06-28 14:14:55 +02:00
|
|
|
"lint-staged": {
|
2017-06-28 14:10:32 +02:00
|
|
|
"*.js": [
|
|
|
|
"eslint --fix",
|
|
|
|
"git add"
|
2018-11-22 11:22:18 +01:00
|
|
|
],
|
2018-11-24 15:09:09 +01:00
|
|
|
"*.{json,css,md}": [
|
2018-11-22 11:22:18 +01:00
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
2017-06-28 14:10:32 +02:00
|
|
|
]
|
2018-11-22 09:03:36 +01:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
2018-11-22 11:17:50 +01:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"proseWrap": "never",
|
|
|
|
"singleQuote": true,
|
|
|
|
"tabWidth": 4,
|
|
|
|
"trailingComma": "all",
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": "*.{json,yaml,yml,md}",
|
|
|
|
"options": {
|
|
|
|
"tabWidth": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2016-06-18 22:49:27 +02:00
|
|
|
}
|
2014-10-23 14:13:17 +02:00
|
|
|
}
|