forked from algoan/nestjs-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.79 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
{
"name": "@algoan/nestjs-components",
"version": "1.0.0",
"description": "NestJS components made by Algoan",
"main": "index.js",
"scripts": {
"test": "npm run test:all",
"build": "npm run build:all",
"test:all": "lerna run test --parallel",
"test:cov:all": "lerna run test:cov --parallel",
"build:all": "lerna run build --parallel",
"publish": "lerna publish --yes",
"commit": "git-cz",
"prettier": "prettier --write 'packages/**/*.ts'",
"lint": "tslint ./packages/*/src/*.ts{,x} ./packages/*/src/**/*.ts{,x} --project tsconfig.json"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nodejs",
"typescript",
"nestjs",
"algoan",
"yelloan"
],
"repository": "https://github.com/algoan/nestjs-components",
"bugs": {
"url": "https://github.com/algoan/nestjs-components/issues"
},
"homepage": "https://github.com/algoan/nestjs-components",
"author": "diephil",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.1.4",
"@yelloan/tslint": "^0.3.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.3",
"jest": "^25.2.4",
"lerna": "3.20.2",
"lint-staged": "^10.1.0",
"prettier": "^2.0.2",
"ts-jest": "^25.3.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"lint-staged": {
"**/*.ts,!**/*.+(test|spec).tsx?": [
"tslint --project tsconfig.json",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}