-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 2.99 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
{
"name": "js-joda-timezone",
"version": "2.1.1",
"description": "iana tzdb timezone bindings for js-joda",
"typings": "dist/js-joda-timezone.d.ts",
"main": "dist/js-joda-timezone.js",
"files": [
"dist",
"src",
"bower.json",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"test": "./node_modules/.bin/mocha --timeout 5000 --require babel-core/register ./test/*Test.js ./test/**/*Test.js",
"test-coverage": "NODE_ENV=test COVERAGE=1 ./node_modules/.bin/nyc --report-dir=build/coverage --reporter=lcov --reporter html ./node_modules/.bin/mocha --timeout 5000 --require babel-core/register --reporter progress ./test/*Test.js ./test/**/*Test.js ./test/**/**/*Test.js",
"test-browser": "./node_modules/.bin/karma start --reporters=dots --single-run",
"test-ts-definitions": "tsc --noImplicitAny --noEmit --pretty test/typescript_defintions/js-joda-timezone-tests.ts",
"test-saucelabs": "./node_modules/.bin/karma start --reporters=\"dots,saucelabs\" --browsers=\"sl_chrome,sl_ie,sl_firefox\" --single-run=true",
"test-ci": "npm run build-dist && npm run test && npm run test-browser && npm run test-ts-definitions && npm run build-esdoc && npm run test-coverage",
"build-esdoc": "./node_modules/.bin/esdoc -c esdoc.json",
"build-dist": "./node_modules/.bin/webpack --progress --colors --bail",
"transform-data": "node ./transform-data.js",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/js-joda/js-joda-timezone.git"
},
"keywords": [
"date",
"time",
"timezone"
],
"nyc": {
"sourceMap": false,
"instrument": false
},
"author": "pithu",
"contributors": [
"pithu",
"phueper"
],
"peerDependencies": {
"js-joda": "^1.11.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"copy-webpack-plugin": "^5.0.3",
"coveralls": "^3.0.1",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.0.0",
"eslint-config-js-joda": "^1.0.0",
"js-joda": "^1.11.0",
"json-loader": "^0.5.7",
"karma": "^2.0.2",
"karma-chai-plugins": "^0.9.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sauce-launcher": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"markdown-toc": "^1.2.0",
"mocha": "^5.2.0",
"moment-timezone": "^0.5.17",
"nyc": "^12.0.2",
"phantomjs-prebuilt": "^2.1.16",
"typescript": "^2.9.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/js-joda/js-joda-timezone/issues"
},
"homepage": "https://github.com/js-joda/js-joda-timezone#readme",
"dependencies": {}
}