-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.57 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
{
"name": "karhu",
"version": "1.5.1",
"description": "A simple node.js logging with support for context specific log levels and stdout capturing",
"dependencies": {
"ansi-styles": "^3.2.0"
},
"devDependencies": {
"@types/chai": "4.2.15",
"@types/jest": "26.0.20",
"@types/lodash": "4.14.168",
"@types/node": "8.10.53",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-spawn-mocha": "6.0.0",
"gulp-typescript": "5.0.1",
"jest": "25.5.4",
"nodemon": "2.0.7",
"npm-release": "1.0.0",
"pre-commit": "1.2.2",
"ts-jest": "26.5.2",
"tslint": "6.1.3",
"typescript": "4.2.2"
},
"scripts": {
"build": "gulp build",
"gulp": "gulp",
"tslint": "tslint --project tsconfig.json",
"test": "jest",
"lint": "npm run tslint",
"tslintfix": "npm run tslint -- --fix",
"nmt": "nodemon -x npm -- test -- --bail",
"prepare": "npm run gulp clean build",
"release": "npm test && npm-release"
},
"pre-commit": [
"tslint"
],
"jest": {
"collectCoverageFrom": [
"/src/main/**/*.js"
],
"testMatch": [
"**/*-test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"setupFiles": [
"<rootDir>/src/test/test-setup.ts"
]
},
"homepage": "https://github.com/BaronaGroup/karhu",
"repository": {
"type": "git",
"url": "BaronaGroup/karhu"
},
"license": "MIT",
"author": {
"name": "Tapani Haka"
},
"main": "lib/karhu",
"browser": "lib/karhu-es5",
"types": "build/main/karhu.d.ts"
}