-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.69 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
{
"name": "typelogger",
"version": "1.0.28",
"description": "A simply typed logger for typescript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test:tdd": "jest --watch",
"test": "jest",
"prepublish": "npm run compile",
"clean": "rm -Rf dist",
"compile": "tsc --project tsconfig.json",
"compile:watch": "tsc --project tsconfig.json --watch",
"publish:patch": "npm version patch && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/densebrain/typelogger.git"
},
"keywords": [
"typescript"
],
"files": [
"dist"
],
"jest": {
"verbose": true,
"globals": {
"__TS_CONFIG__": {
"target": "es5",
"module": "commonjs",
"jsx": "react",
"outDir": "./dist/jest-out"
}
},
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "src\\/test\\/.*\\.spec\\.(ts|tsx)$",
"moduleDirectories": [
"./node_modules",
"./src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"author": "Jonathan Glanz",
"license": "MIT",
"bugs": {
"url": "https://github.com/densebrain/typelogger/issues"
},
"homepage": "https://github.com/densebrain/typelogger#readme",
"dependencies": {
"chalk": "^1.1.3"
},
"devDependencies": {
"@types/jest": "^16.0.4",
"@types/node": "^7.0.2",
"del": "^2.2.0",
"glob": "^7.0.3",
"jest": "^18.1.0",
"lodash": "^4.13.1",
"semver": "^5.1.0",
"shelljs": "^0.7.0",
"source-map-support": "^0.4.0",
"ts-jest": "^18.0.1",
"typescript": "^2.1.0",
"winston": "^2.2.0"
}
}