1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00
unleash.unleash/package.json

94 lines
3.0 KiB
JSON
Raw Normal View History

{
2015-02-10 18:03:09 +01:00
"name": "unleash-server",
"description": "unleash your features",
2015-03-23 18:08:56 +01:00
"version": "0.1.0",
2015-02-10 18:03:09 +01:00
"keywords": [
"unleash",
"feature toggle",
"feature",
"toggle"
],
"repository": {
"type": "git",
"url": "ssh://git@github.com:finn-no/unleash.git"
},
"bugs": {
"url": "https://github.com/finn-no/unleash/issues"
},
"private": true,
"scripts": {
"db-migrate-and-start": "npm run db-migrate && npm run start",
2015-02-10 18:03:09 +01:00
"start": "NODE_ENV=production node server.js",
2015-03-29 20:25:16 +02:00
"build": "./node_modules/.bin/webpack -p",
2015-02-10 18:03:09 +01:00
"dev": "NODE_ENV=development supervisor --ignore ./node_modules/,./public/js server.js",
2015-03-29 20:25:16 +02:00
"start-pg": "pg_virtualenv npm run start-pg-chain",
"start-pg-chain": "export DATABASE_URL=postgres://$PGUSER:$PGPASSWORD@localhost:$PGPORT/postgres ; db-migrate up && npm run dev",
2015-03-24 08:48:36 +01:00
"test": "export PORT=4243 ; jest && npm run lint && mocha test test/*.js && npm run coverage",
2015-02-10 18:03:09 +01:00
"docker-test": "export PORT=4243 ; ./scripts/docker-postgres.sh",
"pg-virtualenv-test": "pg_virtualenv npm run pg-virtualenv-chain",
"pg-virtualenv-chain": "export TEST_DATABASE_URL=postgres://$PGUSER:$PGPASSWORD@localhost:$PGPORT/postgres ; npm run db-migrate-testdb && npm test",
"db-migrate": "node_modules/.bin/db-migrate up",
2015-02-10 18:03:09 +01:00
"db-migrate-testdb": "DATABASE_URL=$TEST_DATABASE_URL ./node_modules/.bin/db-migrate up",
"tdd": "mocha --watch test test/*",
"test-bamboo-ci": "mocha test test/*",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"coverage-report": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"postinstall": "npm run build",
"jest": "jest",
"lint": "eslint . --ignore-path .gitignore"
2015-02-10 18:03:09 +01:00
},
"dependencies": {
2015-03-23 18:18:32 +01:00
"bluebird": "2.9.14",
"body-parser": "1.12.2",
2015-02-10 18:03:09 +01:00
"cookie-parser": "^1.3.3",
2015-12-01 11:56:53 +01:00
"db-migrate": "0.9.23",
2015-02-10 18:03:09 +01:00
"deep-diff": "^0.3.0",
2015-03-23 18:18:32 +01:00
"errorhandler": "1.3.5",
"express": "4.12.3",
2015-03-23 18:26:25 +01:00
"express-validator": "2.9.0",
2015-03-23 21:30:30 +01:00
"ini": "1.3.3",
2015-02-10 18:03:09 +01:00
"jsx-loader": "0.12.2",
2015-03-23 18:26:25 +01:00
"jsxhint": "0.13.2",
2016-03-17 17:12:27 +01:00
"knex": "^0.10.0",
2015-03-17 18:16:06 +01:00
"lodash": "^3.5.0",
2015-03-23 18:18:32 +01:00
"log4js": "0.6.22",
"moment": "^2.11.2",
2015-03-23 18:18:32 +01:00
"nconf": "0.7.1",
2016-04-28 08:29:00 +02:00
"pg": "^4.5.5",
2015-03-23 21:33:18 +01:00
"react": "^0.13.1",
"react-router": "^0.13.2",
2015-07-22 14:49:30 +02:00
"reflux": "^0.2.10",
2015-02-10 18:03:09 +01:00
"reqwest": "^1.1.4",
2015-03-23 18:18:32 +01:00
"webpack": "1.7.3",
2015-02-10 18:03:09 +01:00
"webpack-dev-middleware": "^1.0.11"
},
"devDependencies": {
2015-03-23 21:30:30 +01:00
"chai": "2.1.2",
2015-02-10 18:03:09 +01:00
"coveralls": "^2.11.2",
"eslint": "^2.7.0",
"eslint-config-spt": "^2.0.0",
"eslint-plugin-react": "^4.3.0",
2015-02-10 18:03:09 +01:00
"istanbul": "^0.3.5",
2015-12-01 11:56:53 +01:00
"jest-cli": "0.5.4",
2015-02-10 18:03:09 +01:00
"mocha": "^2.1.0",
2015-03-23 18:26:25 +01:00
"mocha-lcov-reporter": "0.0.2",
"nsp": "^1.0.0",
2015-02-10 18:03:09 +01:00
"pre-commit": "^1.0.2",
2015-03-23 21:33:18 +01:00
"react-tools": "^0.13.1",
2015-02-10 18:03:09 +01:00
"supertest": "^0.15.0",
"supervisor": "^0.6.0",
"xmlbuilder": "^2.5.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/jest-preprocessor.js",
"unmockedModulePathPatterns": [
2015-03-23 17:35:58 +01:00
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/reflux"
],
2015-02-10 18:03:09 +01:00
"moduleFileExtensions": [
"jsx",
"js"
]
}
2014-10-23 14:13:17 +02:00
}