1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/package.json

188 lines
5.0 KiB
JSON
Raw Normal View History

{
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-04-29 22:07:31 +02:00
"version": "4.0.0-alpha.5",
2016-05-01 15:43:25 +02:00
"keywords": [
"unleash",
"feature toggle",
"feature",
"toggle"
],
2016-11-10 15:52:49 +01:00
"files": [
"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": {
"node": ">=14"
2016-05-01 15:43:25 +02:00
},
"license": "Apache-2.0",
"main": "./dist/lib/server-impl.js",
2016-11-10 15:52:49 +01:00
"bin": {
"unleash": "./dist/bin/unleash.js"
2016-11-10 15:52:49 +01:00
},
2016-05-01 15:43:25 +02:00
"scripts": {
"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\"",
"copy-templates": "copyfiles -u 1 src/mailtemplates/**/*.mustache dist/",
"db-migrate": "db-migrate --migrations-dir ./src/migrations",
"lint": "eslint ./src",
"build:watch": "tsc -w",
"build": "yarn run copy-templates && tsc --pretty",
"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",
"test:coverage-report": "nyc report --reporter=text-lcov | coveralls",
"clean": "rimraf dist/"
2016-11-10 15:52:49 +01:00
},
"nyc": {
"all": true,
"include": [
"dist/lib/**/*.js"
],
"exclude": [
"dist/bin",
"dist/migrations"
],
"exclude-after-remap": false
},
2019-06-06 08:10:58 +02:00
"ava": {
"files": [
"./dist/**/*.test.js",
"!src/**/*",
"!**/helpers/**/*",
"!**/fixtures/**/*"
],
"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",
"basic-auth": "^2.0.1",
"bcrypt": "^5.0.1",
2018-08-22 17:39:09 +02:00
"compression": "^1.7.3",
"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",
"cors": "^2.8.5",
"db-migrate": "0.11.11",
"db-migrate-pg": "^1.2.2",
"db-migrate-shared": "^1.2.0",
"deep-diff": "^1.0.2",
"deepmerge": "^4.2.2",
2019-10-03 15:32:48 +02:00
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"gravatar-url": "^3.1.0",
"helmet": "^4.1.0",
"joi": "^17.3.0",
2020-07-31 22:25:33 +02:00
"js-yaml": "^3.14.0",
"knex": "0.95.2",
"log4js": "^6.0.0",
"memoizee": "^0.4.15",
"mime": "^2.4.2",
"moment": "^2.24.0",
"multer": "^1.4.1",
"mustache": "^4.1.0",
"node-fetch": "^2.6.1",
"nodemailer": "^6.5.0",
"owasp-password-strength-test": "^1.3.0",
2016-11-12 11:21:40 +01:00
"parse-database-url": "^0.3.0",
"pg": "^8.0.3",
"pg-connection-string": "^2.5.0",
"pkginfo": "^0.4.1",
"prom-client": "^13.1.0",
"response-time": "^2.3.2",
"serve-favicon": "^2.5.0",
"unleash-frontend": "4.0.0-alpha.11",
"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": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
2020-02-20 08:49:43 +01:00
"@passport-next/passport": "^3.1.0",
"@passport-next/passport-google-oauth2": "^1.0.0",
"@types/bcrypt": "^3.0.0",
2021-02-15 08:39:28 +01:00
"@types/express": "^4.17.11",
"@types/node": "^14.14.37",
2021-04-26 11:27:52 +02:00
"@types/node-fetch": "^2.5.10",
"@types/nodemailer": "^6.4.1",
"@types/owasp-password-strength-test": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"ava": "^3.7.0",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.0",
2020-04-13 22:58:18 +02:00
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"faker": "^5.3.1",
"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",
"nyc": "^15.1.0",
2020-02-20 08:49:43 +01:00
"passport": "^0.4.1",
"passport-google-auth": "^1.0.2",
"prettier": "^1.19.1",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"source-map-support": "^0.5.19",
"superagent": "^6.1.0",
"supertest": "^5.0.0",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.4"
},
2019-10-05 08:10:38 +02:00
"resolutions": {
"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": {
"*.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"
]
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}",
2018-11-22 11:17:50 +01:00
"options": {
"tabWidth": 2
}
}
]
}
2014-10-23 14:13:17 +02:00
}