forked from brainstaff/js-rbac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 690 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "@brainstaff/rbac-workspaces",
"version": "0.1.0",
"description": "BrainStaff workspaces.",
"main": "index.js",
"author": "Alexey Kornilov <alexey.kornilov@kavolorn.ru>",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/brainstaff/js-rbac.git"
},
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build",
"test": "lerna run test",
"publish-all": "lerna run clean && lerna run build && lerna publish --git-remote upstream"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^2.11.0"
}
}