-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 1.85 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"private": true,
"name": "dgraphium",
"license": "MIT",
"author": {
"name": "Zura Benashvili",
"email": "zura.benashvili@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/binier/dgraphium.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lint": "eslint 'packages/*/src/**/*.{ts,js}'",
"lint:check": "yarn lint",
"lint:fix": "yarn lint -- --fix",
"build": "lerna run build",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "yarn lint && lerna run test -- --no-cache",
"release": "lerna version",
"prerelease": "lerna version prerelease --preid next",
"publish": "lerna publish from-git --yes",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.ts": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@binier/hygen": "^5.2.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"commitizen": "^4.0.4",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"jest": "^25.4.0",
"jest-config": "^25.4.0",
"lerna": "^3.20.2",
"lint-staged": "^10.1.6",
"rimraf": "^3.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.8.2",
"typescript": "^3.0.3"
}
}