-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.52 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
{
"name": "lodash.log",
"version": "1.0.3",
"description": "print the intermediate value in a chain to console, make debug easier",
"main": "./lib/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"codecov": "codecov",
"lint:ts": "tslint -p ./tsconfig.json --type-check",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanwei0/lodash.log.git"
},
"files": [
"dist",
"lib",
"es",
"src",
"index.d.ts"
],
"author": "Alan",
"license": "MIT",
"bugs": {
"url": "https://github.com/alanwei0/lodash.log/issues"
},
"homepage": "https://github.com/alanwei0/lodash.log#readme",
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/lodash": "^4.14.71",
"@types/node": "^8.0.25",
"codecov": "^2.3.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^4.0.4",
"lodash": "*",
"ts-jest": "^20.0.10",
"tslint": "^5.7.0",
"tslint-alan": "^1.0.1",
"typescript": "^2.4.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"mapCoverage": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"lint-staged": {
"src/**/*.{ts,tsx}": "lint:ts"
}
}