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.",
|
2021-02-26 13:59:15 +01:00
|
|
|
"version": "3.15.0",
|
2016-05-01 15:43:25 +02:00
|
|
|
"keywords": [
|
|
|
|
"unleash",
|
|
|
|
"feature toggle",
|
|
|
|
"feature",
|
|
|
|
"toggle"
|
|
|
|
],
|
2016-11-10 15:52:49 +01:00
|
|
|
"files": [
|
2021-02-12 11:42:00 +01:00
|
|
|
"dist",
|
|
|
|
"docs"
|
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": {
|
2020-05-14 22:43:38 +02:00
|
|
|
"node": ">=12"
|
2016-05-01 15:43:25 +02:00
|
|
|
},
|
2016-08-22 15:12:05 +02:00
|
|
|
"license": "Apache-2.0",
|
2021-02-12 11:42:00 +01:00
|
|
|
"main": "./dist/lib/server-impl.js",
|
2016-11-10 15:52:49 +01:00
|
|
|
"bin": {
|
2021-02-12 11:42:00 +01:00
|
|
|
"unleash": "./dist/bin/unleash.js"
|
2016-11-10 15:52:49 +01:00
|
|
|
},
|
2016-05-01 15:43:25 +02:00
|
|
|
"scripts": {
|
2021-02-12 11:42:00 +01:00
|
|
|
"start": "node ./dist/server.js",
|
2018-01-17 09:46:16 +01:00
|
|
|
"start:google": "node examples/google-auth-unleash.js",
|
2021-02-15 08:39:28 +01:00
|
|
|
"start:dev": "NODE_ENV=development tsc-watch --onSuccess \"node dist/server-dev.js\"",
|
2021-02-12 11:42:00 +01:00
|
|
|
"db-migrate": "db-migrate --migrations-dir ./src/migrations",
|
|
|
|
"lint": "eslint ./src",
|
|
|
|
"build:watch": "tsc -w",
|
|
|
|
"build": "tsc",
|
|
|
|
"prepare": "yarn run build",
|
|
|
|
"test": "yarn build && NODE_ENV=test PORT=4243 ava",
|
2016-11-10 15:52:49 +01:00
|
|
|
"test:docker": "./scripts/docker-postgres.sh",
|
2021-01-26 10:10:37 +01:00
|
|
|
"test:watch": "yarn test --watch",
|
|
|
|
"test:coverage": "nyc --reporter=lcov yarn 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": [
|
2021-03-04 12:54:13 +01:00
|
|
|
"dist/lib/**/*.js"
|
2021-02-12 11:42:00 +01:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"dist/bin",
|
|
|
|
"dist/migrations"
|
|
|
|
],
|
|
|
|
"exclude-after-remap": false
|
2016-11-13 21:06:28 +01:00
|
|
|
},
|
2019-06-06 08:10:58 +02:00
|
|
|
"ava": {
|
2020-04-13 22:53:06 +02:00
|
|
|
"files": [
|
2021-02-12 11:42:00 +01:00
|
|
|
"./dist/**/*.test.js",
|
|
|
|
"!src/**/*",
|
2020-04-13 22:53:06 +02:00
|
|
|
"!**/helpers/**/*",
|
|
|
|
"!**/fixtures/**/*"
|
2021-02-12 11:42:00 +01:00
|
|
|
],
|
|
|
|
"snapshotDir": "snapshots"
|
2019-06-06 08:10:58 +02:00
|
|
|
},
|
2016-11-10 15:52:49 +01:00
|
|
|
"dependencies": {
|
2019-10-02 21:51:58 +02:00
|
|
|
"async": "^3.1.0",
|
2020-12-03 21:29:01 +01:00
|
|
|
"basic-auth": "^2.0.1",
|
2018-08-22 17:39:09 +02:00
|
|
|
"compression": "^1.7.3",
|
2021-02-18 09:03:21 +01:00
|
|
|
"connect-session-knex": "^2.0.0",
|
2019-03-04 19:40:59 +01:00
|
|
|
"cookie-parser": "^1.4.4",
|
2020-10-02 16:38:51 +02:00
|
|
|
"cookie-session": "^2.0.0-rc.1",
|
2020-06-24 11:26:37 +02:00
|
|
|
"db-migrate": "0.11.11",
|
2020-05-14 22:42:58 +02:00
|
|
|
"db-migrate-pg": "^1.2.2",
|
2020-04-14 22:29:11 +02:00
|
|
|
"db-migrate-shared": "^1.2.0",
|
2018-12-17 11:02:52 +01:00
|
|
|
"deep-diff": "^1.0.2",
|
2020-04-13 22:38:46 +02:00
|
|
|
"deepmerge": "^4.2.2",
|
2019-10-03 15:32:48 +02:00
|
|
|
"errorhandler": "^1.5.1",
|
|
|
|
"express": "^4.17.1",
|
2021-02-18 09:03:21 +01:00
|
|
|
"express-session": "^1.17.1",
|
2020-02-21 23:20:06 +01:00
|
|
|
"gravatar-url": "^3.1.0",
|
2020-09-01 21:19:46 +02:00
|
|
|
"helmet": "^4.1.0",
|
2020-09-28 21:54:44 +02:00
|
|
|
"joi": "^17.3.0",
|
2020-07-31 22:25:33 +02:00
|
|
|
"js-yaml": "^3.14.0",
|
2021-01-04 10:29:33 +01:00
|
|
|
"knex": "0.21.15",
|
2019-11-18 08:11:38 +01:00
|
|
|
"log4js": "^6.0.0",
|
2021-01-19 10:42:45 +01:00
|
|
|
"memoizee": "^0.4.15",
|
2019-04-26 10:36:17 +02:00
|
|
|
"mime": "^2.4.2",
|
2019-01-28 12:23:05 +01:00
|
|
|
"moment": "^2.24.0",
|
2019-03-13 19:10:13 +01:00
|
|
|
"multer": "^1.4.1",
|
2021-01-19 10:42:45 +01:00
|
|
|
"mustache": "^4.1.0",
|
|
|
|
"node-fetch": "^2.6.1",
|
2016-11-12 11:21:40 +01:00
|
|
|
"parse-database-url": "^0.3.0",
|
2020-05-02 09:38:27 +02:00
|
|
|
"pg": "^8.0.3",
|
2017-11-03 23:14:31 +01:00
|
|
|
"pkginfo": "^0.4.1",
|
2021-02-04 13:20:10 +01:00
|
|
|
"prom-client": "^13.1.0",
|
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",
|
2021-02-26 10:53:45 +01:00
|
|
|
"unleash-frontend": "3.13.3",
|
2021-02-19 11:27:29 +01:00
|
|
|
"uuid": "^8.3.2",
|
2020-09-25 22:18:40 +02:00
|
|
|
"yargs": "^16.0.3"
|
2016-05-01 15:43:25 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-02-23 06:05:51 +01:00
|
|
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
2020-02-20 08:49:43 +01:00
|
|
|
"@passport-next/passport": "^3.1.0",
|
2019-02-01 16:13:16 +01:00
|
|
|
"@passport-next/passport-google-oauth2": "^1.0.0",
|
2021-02-15 08:39:28 +01:00
|
|
|
"@types/express": "^4.17.11",
|
2020-07-31 22:27:42 +02:00
|
|
|
"@types/node": "^14.0.0",
|
2021-02-23 06:05:51 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.15.2",
|
|
|
|
"@typescript-eslint/parser": "^4.15.2",
|
2020-04-13 22:53:06 +02:00
|
|
|
"ava": "^3.7.0",
|
2020-06-24 11:26:37 +02:00
|
|
|
"coveralls": "^3.1.0",
|
2020-04-13 22:58:18 +02:00
|
|
|
"eslint": "^6.8.0",
|
2020-04-14 22:29:11 +02:00
|
|
|
"eslint-config-airbnb-base": "^14.1.0",
|
2021-02-23 06:05:51 +01:00
|
|
|
"eslint-config-airbnb-typescript": "^12.3.1",
|
2020-04-14 22:29:11 +02:00
|
|
|
"eslint-config-prettier": "^6.10.1",
|
|
|
|
"eslint-plugin-import": "^2.20.2",
|
|
|
|
"eslint-plugin-prettier": "^3.1.3",
|
2021-02-08 16:22:15 +01:00
|
|
|
"faker": "^5.3.1",
|
2021-01-19 10:42:45 +01:00
|
|
|
"fetch-mock": "^9.11.0",
|
2020-02-21 17:04:24 +01:00
|
|
|
"husky": "^4.2.3",
|
2020-02-21 22:15:49 +01:00
|
|
|
"lint-staged": "^10.0.7",
|
2020-02-20 08:49:43 +01:00
|
|
|
"lolex": "^6.0.0",
|
2020-06-24 11:26:37 +02:00
|
|
|
"nyc": "^15.1.0",
|
2020-02-20 08:49:43 +01:00
|
|
|
"passport": "^0.4.1",
|
2019-01-28 12:23:05 +01:00
|
|
|
"passport-google-auth": "^1.0.2",
|
2020-04-14 22:29:11 +02:00
|
|
|
"prettier": "^1.19.1",
|
2019-10-03 15:58:47 +02:00
|
|
|
"proxyquire": "^2.1.3",
|
2021-02-23 06:05:51 +01:00
|
|
|
"source-map-support": "^0.5.19",
|
2021-02-23 13:50:22 +01:00
|
|
|
"sinon": "^9.2.4",
|
2020-09-25 22:36:15 +02:00
|
|
|
"superagent": "^6.1.0",
|
2020-09-25 22:35:26 +02:00
|
|
|
"supertest": "^5.0.0",
|
2021-02-23 06:05:51 +01:00
|
|
|
"ts-node": "^9.1.1",
|
2021-02-19 08:18:48 +01:00
|
|
|
"tsc-watch": "^4.2.9",
|
|
|
|
"typescript": "^4.1.5"
|
2017-06-28 14:10:32 +02:00
|
|
|
},
|
2019-10-05 08:10:38 +02:00
|
|
|
"resolutions": {
|
2020-06-24 11:26:37 +02:00
|
|
|
"set-value": "^2.0.1",
|
|
|
|
"db-migrate/rc/minimist": "^1.2.5",
|
|
|
|
"nyc/**/minimist": "^1.2.5",
|
|
|
|
"knex/liftoff/object.map/**/kind-of": "^6.0.3",
|
|
|
|
"knex/liftoff/findup-sync/micromatc/kind-of": "^6.0.3",
|
|
|
|
"knex/liftoff/findup-sync/micromatc/nanomatch/kind-of": "^6.0.3",
|
2020-11-24 12:51:44 +01:00
|
|
|
"knex/liftoff/findup-sync/micromatch/define-property/**/kind-of": "^6.0.3",
|
|
|
|
"googleapis": "^39.1.0",
|
|
|
|
"node-forge": "^0.10.0"
|
2019-10-05 08:10:38 +02:00
|
|
|
},
|
2017-06-28 14:14:55 +02:00
|
|
|
"lint-staged": {
|
2017-06-28 14:10:32 +02:00
|
|
|
"*.js": [
|
2021-02-11 14:08:33 +01:00
|
|
|
"eslint --fix"
|
2018-11-22 11:22:18 +01:00
|
|
|
],
|
2018-11-24 15:09:09 +01:00
|
|
|
"*.{json,css,md}": [
|
2021-02-11 14:08:33 +01:00
|
|
|
"prettier --write"
|
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": [
|
|
|
|
{
|
2021-03-04 12:54:13 +01:00
|
|
|
"files": "*.{json,yaml,yml,md,ts}",
|
2018-11-22 11:17:50 +01:00
|
|
|
"options": {
|
|
|
|
"tabWidth": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2016-06-18 22:49:27 +02:00
|
|
|
}
|
2014-10-23 14:13:17 +02:00
|
|
|
}
|