-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 2.6 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
{
"name": "timezonecomplete",
"version": "5.13.1",
"description": "DateTime, TimeZone, Duration and Period library aimed at providing a consistent and complete date-time interface, away from the original JavaScript Date class.",
"keywords": [
"Date",
"time zone",
"timezone",
"period",
"duration",
"timezonejs",
"date arithmetic",
"date math"
],
"homepage": "https://github.com/spiritit/timezonecomplete",
"bugs": "https://github.com/spiritit/timezonecomplete/issues",
"license": "MIT",
"author": {
"name": "Software Development",
"email": "[email protected]",
"url": "http://www.spiritit.com"
},
"contributors": [
{
"name": "Rogier Schouten",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "http://github.com/spiritit/timezonecomplete.git"
},
"main": "./dist/lib/index.js",
"typings": "./dist/lib/index.d.ts",
"scripts": {
"clean": "rimraf ./dist ./temp ./doc/typedoc ./examples/browser-amd-requirejs/timezonecomplete.js ./examples/browser-stand-alone/timezonecomplete.js",
"lint": "tslint -c ./tslint.json -t stylish ./src/**/*.ts",
"tsc": "tsc",
"copy": "cp ./src/test/*.json ./dist/test",
"doc": "typedoc ./src/lib",
"umd": "node browserify-umd.js",
"minify": "node minify-umd.js",
"build": "npm run tsc && npm run lint && npm run copy && npm run umd && npm run minify",
"watch": "tsc --watch",
"test": "node ./runtests.js",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- ./dist/test/*.js",
"bundle_tests": "node browserify-karma.js",
"exec_karma": "karma start --single-run",
"karma": "npm run bundle_tests && npm run exec_karma",
"all": "npm run clean && npm run build && npm run test && npm run karma && npm run doc"
},
"dependencies": {
"tzdata": "1.0.25"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/lolex": "^5.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^14.14.22",
"@types/sinon": "^9.0.4",
"@types/source-map-support": "^0.5.2",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"glob": "^7.1.6",
"istanbul": "^0.4.5",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mkdirp": "^1.0.4",
"mocha": "^10.3.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"source-map-support": "^0.5.19",
"tslint": "^6.1.2",
"typedoc": "^0.25.12",
"typescript": "~5.3.2",
"uglify-js": "^3.10.0"
}
}