-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "typescript-test-utils",
"version": "1.2.1",
"keywords": [
"test",
"types",
"typescript"
],
"license": "MIT",
"author": "Daniel Perez Alvarez <danielpza@protonmail.com>",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"prepare": "npm run build",
"release": "standard-version",
"test": "tsc --noEmit src/*.test.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm test && pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"husky": "^1.1.3",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"standard-version": "^4.4.0",
"typescript": "^3.1.6"
},
"description": "Helper types for testing your package exported types",
"repository": {
"type": "git",
"url": "git+https://github.com/danielpa9708/typescript-test-utils.git"
},
"bugs": {
"url": "https://github.com/danielpa9708/typescript-test-utils/issues"
},
"homepage": "https://github.com/danielpa9708/typescript-test-utils#readme"
}