forked from prantlf/date-fns-timezone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.13 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "date-fns-timezone",
"version": "0.0.0-development",
"description": "Parsing and formatting date strings using IANA time zones for date-fns.",
"author": {
"name": "Ferdinand Prantl",
"email": "[email protected]",
"url": "http://prantl.tk"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/timezone-support/blob/master/LICENSE"
}
],
"homepage": "https://github.com/prantlf/date-fns-timezone#readme",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/date-fns-timezone.git"
},
"bugs": {
"url": "https://github.com/prantlf/date-fns-timezone/issues"
},
"engines": {
"node": ">=6"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"prepare": "npm run build",
"lint": "run-s lint:js lint:ts",
"lint:js": "standard --verbose",
"lint:ts": "tslint -t stylish src/*.ts test/*.ts",
"compile": "rollup -c",
"copy:typings": "cpy src/*.d.ts dist",
"build": "run-s lint compile copy:typings",
"compile:tests": "tsc --lib es6 test/typings.test.ts",
"check": "jest",
"test": "run-s lint compile:tests check",
"doc": "jsdoc -c .jsdoc.json",
"coverage": "test `node --version | cut -c 2` -eq 8 && cat coverage/lcov.info | coveralls",
"benchmark": "node perf",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"standard": {
"ignore": [
"dist",
"docs"
]
},
"jest": {
"roots": [
"test"
],
"collectCoverage": true,
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/*.js"
],
"coverageReporters": [
"lcov"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"dependencies": {
"date-fns": "^1.30.1",
"timezone-support": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@types/jest": "^24.0.15",
"babel-jest": "^24.8.0",
"benchmark": "^2.1.4",
"connect": "^3.7.0",
"coveralls": "^3.0.5",
"cpy-cli": "^2.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"fs-extra": "^8.1.0",
"jasmine-core": "^3.4.0",
"jest": "^24.8.0",
"jsdoc": "^3.6.2",
"minami": "^1.2.3",
"moment-timezone": "^0.5.26",
"npm-run-all": "^4.1.5",
"puppeteer": "^1.18.1",
"regenerator-runtime": "^0.13.2",
"rimraf": "^2.6.3",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-uglify": "^6.0.2",
"semantic-release": "^15.13.18",
"serve-static": "^1.14.1",
"standard": "^13.0.1",
"tiny-glob": "^0.2.6",
"travis-deploy-once": "^5.0.11",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3"
},
"keywords": [
"date-fns",
"timezone",
"time-zone",
"date",
"time"
]
}