-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 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-simple-logger",
"version": "1.0.0",
"description": "A simple logger for TypeScript based projects",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "nyc mocha --opts ./mocha.opts",
"lint": "tslint \"**/*.ts\" -c tslint.json -e \"**/config/schema.d.ts\" -e \"**/tests/**\" -e \"node_modules/**\" -e \"tmp/**\" -e \"dist/**\"",
"prepackage": "cp ./package.json @asoriano/logger-ts/package.json && cp dist/* @asoriano/logger-ts",
"package": "cd $npm_package_name && npm pack",
"postpackage": "mv $npm_package_name/asoriano-logger-ts-$npm_package_version.tgz [email protected]",
"compodoc": "./node_modules/.bin/compodoc -p tsconfig.json",
"preci-coverage": "mv coverage/coverage-final.json coverage/coverage.json || echo well",
"ci-coverage": "codecov --disable=gcov"
},
"repository": {
"type": "git",
"url": "https://github.com/asorian0/ts-logger.git"
},
"author": "Armando Soriano <[email protected]>",
"license": "ISC",
"dependencies": {
"typescript": "^2.7.2"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.5",
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^9.3.0",
"chai": "^4.1.2",
"mocha": "^5.0.1",
"nyc": "^11.4.1",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0",
"tslint": "^5.9.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html",
"json"
],
"sourceMap": true,
"instrument": true,
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80
}
}