mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"name": "unleash-project",
|
|
"description": "unleash your features",
|
|
"version": "1.0.0-alpha.2",
|
|
"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": {
|
|
"node": "6"
|
|
},
|
|
"scripts": {
|
|
"bootstrap": "lerna bootstrap",
|
|
"prepublish": "npm run bootstrap",
|
|
"lint": "node node_modules/eslint/bin/eslint.js packages --fix --ignore-pattern=node_modules --ext=js,jsx",
|
|
"test": "npm run lint && lerna --concurrency=1 exec npm run test",
|
|
"test:ci": "npm run lint && lerna --concurrency=1 exec npm run test:ci",
|
|
"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",
|
|
"heroku-postbuild": "npm run bootstrap && lerna --scope=unleash-frontend exec npm run build"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"eslint": "^2.12.0",
|
|
"eslint-config-finn": "^1.0.0-alpha.4",
|
|
"eslint-plugin-react": "^4.3.0",
|
|
"lerna": "2.0.0-beta.20",
|
|
"nsp": "^2.3.2"
|
|
}
|
|
}
|