-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.5 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "channelape-logger",
"version": "0.3.0",
"description": "Common logger for all ChannelApe TypeScript and JavaScript projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "tsc && tsc -p test/tsconfig.json",
"watch": "concurrently -k -p \"[{name}]\" -n \"src,test\" -c \"yellow.bold,cyan.bold\" \"tsc --watch\" \"tsc -p test/tsconfig.json --watch\"",
"unit-test": "mocha --opts ./test/mocha.opts",
"watch-unit-test": "mocha --recursive --compilers ts:ts-node/register --watch test/**/*.spec.* ",
"test": "npm run unit-test",
"pretest": "npm run compile && npm run lint",
"posttest": "npm run mutate && npm run cover",
"cover": "nyc npm run unit-test",
"mutate": "stryker run",
"lint": "tslint -p tsconfig.json && tslint -p test/tsconfig.json"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ChannelApe/channelape-typescript-logger.git"
},
"keywords": [
"channelape",
"javascript",
"typescript",
"ecommerce",
"logger"
],
"publishConfig": {
"access": "public"
},
"author": "ChannelApe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ChannelApe/channelape-typescript-logger/issues"
},
"homepage": "https://github.com/ChannelApe/channelape-typescript-logger#readme",
"contributors": [
{
"name": "Frank Mazzarella",
"email": "fmazzarella@channelape.com"
},
{
"name": "Craig Simko",
"email": "csimko@channelape.com"
},
{
"name": "RJ Davis",
"email": "rjdavis@channelape.com"
}
],
"dependencies": {},
"devDependencies": {
"@types/chai": "4.1.3",
"@types/mocha": "5.2.0",
"@types/sinon": "4.3.1",
"chai": "4.1.2",
"concurrently": "3.5.1",
"istanbul": "0.4.5",
"mocha": "5.1.1",
"mocha-typescript": "1.1.12",
"nyc": "11.7.1",
"sinon": "4.5.0",
"source-map-support": "0.5.5",
"stryker": "0.17.0",
"stryker-api": "0.12.0",
"stryker-html-reporter": "0.11.4",
"stryker-mocha-framework": "0.7.2",
"stryker-mocha-runner": "0.10.8",
"stryker-typescript": "0.8.3",
"ts-node": "6.0.1",
"tslint": "5.9.1",
"tslint-config-airbnb": "5.8.0",
"typescript": "2.7.2"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"report-dir": "./reports/lcov"
}
}