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

47 lines
1.2 KiB
JSON
Raw Normal View History

{
2016-06-18 09:19:57 +02:00
"name": "unleash-project",
2016-05-01 15:43:25 +02:00
"description": "unleash your features",
2016-06-17 23:08:32 +02:00
"version": "1.0.0-alpha.2",
2016-05-01 15:43:25 +02: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"
},
"engines": {
2016-06-18 09:19:57 +02:00
"node": "6"
2016-05-01 15:43:25 +02:00
},
"scripts": {
2016-06-18 09:19:57 +02:00
"bootstrap": "lerna bootstrap",
"prepublish": "npm run bootstrap",
2016-06-18 11:36:50 +02:00
"lint": "lerna exec eslint .",
"pre-commit": "echo 'no lint check' && exit 0;",
2016-06-18 09:19:57 +02:00
"test": "lerna --concurrency=1 exec npm run test",
"test:ci": "lerna --concurrency=1 exec npm run test:ci",
2016-06-18 11:36:50 +02:00
"nsp": "lerna exec nsp check",
"start": "lerna --scope=unleash-server exec npm start",
"publish": "lerna publish",
"publish:dry": "lerna publish --skip-git --skip-npm",
"db-migrate": "lerna --scope=unleash-api exec npm run db-migrate"
2016-05-01 15:43:25 +02:00
},
2016-06-18 09:19:57 +02:00
"dependencies": {},
2016-05-01 15:43:25 +02:00
"devDependencies": {
2016-06-18 09:19:57 +02:00
"eslint": "^2.0.0",
"eslint-config-finn": "^1.0.0-alpha.3",
2016-05-01 15:43:25 +02:00
"eslint-plugin-react": "^4.3.0",
2016-06-18 09:19:57 +02:00
"lerna": "2.0.0-beta.20",
2016-05-01 15:43:25 +02:00
"nsp": "^2.3.2",
2016-06-18 09:19:57 +02:00
"pre-commit": "^1.0.2"
2016-05-01 15:43:25 +02:00
},
"pre-commit": [
2016-06-18 11:36:50 +02:00
"pre-commit"
2016-05-01 15:43:25 +02:00
]
2014-10-23 14:13:17 +02:00
}