-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "moment-dt",
"version": "1.0.7",
"description": "Convert timestamp-with-timezone-objects from and to moment.js",
"main": "moment-dt.js",
"typings": "./moment-dt.d.ts",
"scripts": {
"test": "npm run test:dev && npm run test:prod && npm run test:typings",
"test:dev": "karma start --singleRun",
"test:prod": "cross-env MINIFIED_TESTS=true karma start --single-run",
"test:typings": "tsc --project tests/typings-tests",
"start": "npm run test:dev",
"build": "uglifyjs --compress --mangle -- moment-dt.js > moment-dt.min.js",
"prepare": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartin85/moment-dt.git"
},
"keywords": [
"momentjs",
"date",
"timestamp",
"timezone"
],
"author": "Smartin Nematronic",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartin85/moment-dt/issues"
},
"homepage": "https://github.com/smartin85/moment-dt#readme",
"dependencies": {
"moment": ">=2.29.2",
"moment-timezone": "^0.5.11"
},
"devDependencies": {
"@types/moment-timezone": "0.5.2",
"cross-env": "^7.0.3",
"jasmine-core": "3.6.0",
"karma": "6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "2.0.3",
"karma-coveralls": "2.1.0",
"karma-eslint": "2.2.0",
"karma-global-preprocessor": "0.0.2",
"karma-jasmine": "4.0.1",
"moment": "2.29.2",
"typescript": "4.1.3",
"uglify-js": "3.12.7"
}
}