-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1015 Bytes
/
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
{
"name": "typescript-conditional-types",
"description": "Helpers for typescript generic types",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig-build.json",
"prepare": "npm run build",
"release": "standard-version",
"test": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "npm test && pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"and",
"conditional",
"extends",
"generic",
"if",
"not",
"or",
"types",
"typescript",
"utility",
"utitlities"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"husky": "^1.1.2",
"prettier": "^1.13.7",
"pretty-quick": "^1.8.0",
"standard-version": "^4.4.0",
"typescript": "^3.1.6"
},
"dependencies": {}
}