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

45 lines
1.3 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
},
"license": "Apache-2.0",
2016-05-01 15:43:25 +02:00
"scripts": {
2016-06-18 09:19:57 +02:00
"bootstrap": "lerna bootstrap",
"prepublish": "npm run bootstrap",
"lint": "eslint . --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",
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",
"heroku-postbuild": "npm run bootstrap && lerna --scope=unleash-frontend exec npm run build"
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-08-25 13:24:14 +02:00
"eslint": "^3.4.0",
"eslint-config-finn": "1.0.0-alpha.9",
"eslint-config-finn-react": "^1.0.0-alpha.2",
"eslint-plugin-react": "^6.2.0",
2016-06-18 09:19:57 +02:00
"lerna": "2.0.0-beta.20",
"nsp": "^2.3.2"
}
2014-10-23 14:13:17 +02:00
}