-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "@microservices/core",
"version": "1.0.0",
"author": {
"name": "Munir Ahmed Elsangedy",
"email": "[email protected]",
"url": "https://github.com/elsangedy"
},
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"cl": "lerna clean",
"bs": "lerna bootstrap",
"build": "lerna run build",
"lint": "lerna run lint",
"start": "lerna run start",
"start:dev": "lerna run start:dev",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"coveralls": "jest --coverage && cat coverage/lcov.info | coveralls"
},
"devDependencies": {
"coveralls": "^3.0.2",
"husky": "^1.3.1",
"lerna": "^3.10.6"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "packages",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}