-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "samwell",
"version": "0.2.0",
"description": "Zero config logger for Javascript",
"main": "lib/index.js",
"types": "./samwell.d.ts",
"files": [
"README.md",
"src/",
"lib/",
"index.js",
"register-server.js",
"samwell.d.ts"
],
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json && tslint -p tsconfig-test.json",
"test": "jest",
"dts": "dts-bundle --name samwell --headerPath header.d.ts.tpl --main ./lib/index.d.ts --baseDir ./ --out samwell.d.ts"
},
"repository": "https://www.github.com/abihf/samwell",
"author": "Abi Hafshin <abi@hafs.in>",
"license": "MIT",
"dependencies": {
"colors": "^1.1.2",
"prettyjson": "^1.2.1",
"safe-json-stringify": "^1.0.4"
},
"devDependencies": {
"@types/jest": "^21.1.2",
"@types/node": "^8.0.32",
"dts-bundle": "^0.7.3",
"jest": "^21.2.1",
"ts-jest": "^21.1.0",
"tslint": "^5.7.0",
"typescript": "^2.5.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"mapCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}