forked from prantlf/date-fns-timezone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.1 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
{
"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": "prantlf@gmail.com",
"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.29.0",
"timezone-support": "^1.5.5"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"benchmark": "^2.1.4",
"connect": "^3.6.6",
"coveralls": "^3.0.2",
"cpy-cli": "^2.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"fs-extra": "^7.0.0",
"jasmine-core": "^3.2.1",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"moment-timezone": "^0.5.21",
"npm-run-all": "^4.1.3",
"puppeteer": "^1.9.0",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.2",
"rollup": "^0.66.5",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-uglify": "^6.0.0",
"semantic-release": "^15.9.17",
"serve-static": "^1.13.2",
"standard": "^12.0.1",
"tiny-glob": "^0.2.2",
"travis-deploy-once": "^5.0.9",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.2"
},
"keywords": [
"date-fns",
"timezone",
"time-zone",
"date",
"time"
]
}