-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 1.51 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": "klg-date",
"version": "2.0.5",
"description": "date util",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"build": "tsc -d -p ./",
"test": "jest",
"cov": "jest --coverage --coverageDirectory=coverage",
"prepublishOnly": "npm run build",
"pretest": "npm run lint"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/src/.*\\.(test|spec).(ts|tsx|js)$",
"collectCoverageFrom": [
"src/**/*.{js,jsx,tsx,ts}",
"!**/node_modules/**",
"!**/vendor/**"
],
"coverageReporters": [
"json",
"lcov"
],
"verbose": true,
"testURL": "http://localhost/"
},
"repository": {
"type": "git",
"url": "https://github.com/kaolalicai/klg-date"
},
"keywords": [
"klg"
],
"author": "nick",
"license": "MIT",
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"moment-timezone": "^0.5.28",
"tracer": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/moment-timezone": "^0.5.13",
"@types/power-assert": "^1.5.3",
"jest": "^25.4.0",
"source-map-support": "^0.5.19",
"ts-jest": "^25.4.0",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"tslint-config-klg": "^2.0.0",
"typescript": "^3.8.3",
"webstorm-disable-index": "^1.2.0"
}
}