-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.22 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
76
{
"name": "@kibibit/project-template",
"version": "0.0.0-development",
"description": "all basic node.js project tools installed and ready to go",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"keywords": [],
"scripts": {
"generate-barrels": "barrelsby --delete -d ./src -l below -q",
"commit": "cz",
"lint:fix": "eslint src/**/*.js --fix",
"lint": "eslint src/**/*.js",
"test": "jest",
"test:watch": "jest --watch --coverage",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"semantic-release": "semantic-release",
"semantic-release:init": "semantic-release-cli setup"
},
"repository": {
"type": "git",
"url": "https://github.com/Kibibit/project-template.git"
},
"author": "thatkookooguy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kibibit/project-template/issues"
},
"homepage": "https://github.com/Kibibit/project-template#readme",
"dependencies": {
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"all-contributors-cli": "^6.19.0",
"babel-jest": "^26.6.3",
"barrelsby": "^2.2.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.13.0",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-stare": "^2.2.0",
"semantic-release": "^17.2.2",
"semantic-release-cli": "^5.4.0",
"typescript": "^4.0.5"
},
"jest-stare": {
"resultDir": "test-results/",
"coverageLink": "../coverage/index.html"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
}
}