-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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": "server-request-timer",
"version": "1.0.0",
"description": "A library for analyzing request execution",
"keywords": [
"libs",
"server"
],
"license": "Apache-2.0",
"author": "Seliverstov Ivan <[email protected]>",
"files": [
"dist"
],
"engines": {
"node": ">=8.0.0"
},
"main": "./dist/request-timer.js",
"types": "./dist/request-timer.d.ts",
"repository": {
"type": "git",
"repository": "https://github.com/TinkoffCreditSystems/server-request-timer.git"
},
"scripts": {
"cz": "git-cz",
"clean": "rm -rf dist",
"docs": "typedoc --out docs/api src/ --ignoreCompilerErrors --mode file --hideGenerator --includes docs/assets",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint --project . \"src/**/*.ts\"",
"check": "npm run lint && npm run test:unit",
"test:unit": "jest --forceExit --coverage --verbose --detectOpenHandles --passWithNoTests",
"test:ci": "npm run test:unit -- --coverageReporters=text-lcov | coveralls",
"test:unit:watch": "jest --watch",
"prepublishOnly": "npm run check && npm run build",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^8.10.54",
"coveralls": "^3.0.4",
"cz-conventional-changelog": "^3.0.2",
"semantic-release": "^15.13.24",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"jest": "^24.9.0",
"lint-staged": "^8.1.7",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-unional": "^0.10.0",
"typescript": "^3.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"format",
"git add"
]
}
}