-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.25 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@codibly/api-validation",
"version": "0.0.0-development",
"description": "",
"repository": "git@github.com:codibly/api-validation.git",
"license": "MIT",
"author": "Damian Łabas <damian.labas@codibly.com>",
"main": "lib/index.js",
"module": "lib/index.es.js",
"scripts": {
"build": "rollup -c",
"precommit": "lint-staged && yarn build && yarn test",
"commit": "./node_modules/.bin/git-cz",
"doc": "typedoc --out doc --mode file --ignoreCompilerErrors src",
"format": "prettier --write \"src/**/*\"",
"lint": "tslint --project tsconfig.json",
"semantic-release": "semantic-release",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js,yml,json,md,html}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"tslint --fix --project tsconfig.json",
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.0.0",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.149",
"commitlint": "^8.0.0",
"git-cz": "^3.0.1",
"husky": "^2.3.0",
"jest": "^24.1.0",
"jest-haste-map": "^24.4.0",
"jest-resolve": "^24.4.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"rollup": "^1.0.2",
"rollup-plugin-cleaner": "^0.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.21.1",
"semantic-release": "^15.13.24",
"ts-jest": "^24.0.0",
"tslib": "^1.9.3",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.4.5"
},
"release": {
"branches": [
"master",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"dependencies": {
"lodash": "^4.17.15"
}
}