-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
58 lines (58 loc) · 1.72 KB
/
package.json
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@scalecube/scalecube-js",
"version": "0.1.0",
"private": true,
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"workspaces": [
"packages/*"
],
"repository": "github:scalecube/scalecube-js",
"description": "Scalecube-js provides microservices pattern, in easy to use way. Supporting NodeJS and Browsers (your client doesn't have to be mono!)",
"keywords": [
"scalecube",
"scalecube-js",
"microservices",
"services",
"discovery",
"cluster"
],
"scripts": {
"pre-push": "yarn lint && yarn build && yarn test && yarn doc",
"update-scalecube": "lerna clean --yes && rimraf node_modules/@scalecube && yarn bootstrap",
"start": "http-server -a localhost -p 8000",
"start-node-example": "lerna run start-node-example",
"bootstrap": "lerna bootstrap --npm-client=yarn",
"build": "lerna run --stream --concurrency 1 build",
"clean": "lerna run clean --stream",
"test": "lerna run test --stream",
"test-dom-env": "lerna run test-dom-env",
"test-node-env": "lerna run test-node-env",
"lint": "remark . -f && lerna run lint",
"bumb": "lerna version --no-push --force-publish",
"doc": "lerna run doc"
},
"author": "Scalecube (https://github.com/scalecube/scalecube-js)",
"license": "MIT",
"dependencies": {
"husky": "^1.3.1"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"http-server": "^0.11.1",
"lerna": "^3.13.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"remark-cli": "^8.0.1",
"remark-lint": "^7.0.1",
"remark-preset-lint-recommended": "^4.0.1",
"rimraf": "^2.6.3",
"tslint-config-prettier": "^1.17.0"
}
}