-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.47 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
{
"name": "ts-types-utils",
"version": "1.5.0",
"description": "Type utilities for typescript",
"keywords": [
"and",
"args",
"arguments",
"assign",
"function",
"join",
"types",
"typescript",
"utilities",
"utility",
"utils"
],
"homepage": "https://github.com/danielpa9708/ts-types-utils#readme",
"bugs": {
"url": "https://github.com/danielpa9708/ts-types-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielpa9708/ts-types-utils.git"
},
"license": "MIT",
"author": "Daniel Perez Alvarez <[email protected]>",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig-build.json",
"prepare": "npm run build",
"release": "standard-version",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm test && pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/jest": "^24.0.4",
"husky": "^1.1.2",
"jest": "^23.6.0",
"prettier": "^1.13.7",
"pretty-quick": "^1.8.0",
"standard-version": "^4.4.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.6",
"typescript-test-utils": "^1.2.1"
}
}