UNPKG

2.79 kBJSONView Raw
1{
2 "name": "@js-joda/core",
3 "version": "3.0.0",
4 "description": "a date and time library for javascript",
5 "repository": {
6 "type": "git",
7 "url": "https://github.com/js-joda/js-joda.git"
8 },
9 "main": "dist/js-joda.js",
10 "module": "dist/js-joda.esm.js",
11 "typings": "dist/js-joda.d.ts",
12 "files": [
13 "dist",
14 "src",
15 "bower.json",
16 "CHANGELOG.md",
17 "CheatSheet.md",
18 "README.md"
19 ],
20 "scripts": {
21 "prepublish": "npm run build-dist",
22 "test": "NODE_ENV=test ./node_modules/.bin/mocha --timeout 5000 --require @babel/register ./test/*Test_mochaOnly.js ./test/*Test.js ./test/**/*Test.js ./test/**/**/*Test.js",
23 "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/register --reporter progress ./test/*Test.js ./test/**/*Test.js ./test/**/**/*Test.js",
24 "test-browser": "./node_modules/.bin/karma start --reporters=dots --single-run",
25 "test-saucelabs": "./node_modules/.bin/karma start --reporters=\"dots,saucelabs\" --browsers=\"sl_chrome,sl_ie,sl_firefox,sl_ios_simulator\" --single-run=true",
26 "test-ci": "npm run build-dist && npm run test && npm run test-browser -- --browsers \"Firefox,PhantomJS\" && npm run test-ts-definitions && npm run test-coverage",
27 "test-ts-definitions": "tsc -p test/typescript_definitions/tsconfig.json",
28 "build-dist": "npx rollup -c rollup.config.js",
29 "build-md-toc": "./node_modules/.bin/markdown-toc -i CheatSheet.md",
30 "build-gz-check": "gzip -kf dist/js-joda.min.js && ls -alh ./dist/js-joda.min.js*",
31 "lint": "../../node_modules/.bin/eslint ./src ./test"
32 },
33 "keywords": [
34 "date",
35 "time",
36 "timezone"
37 ],
38 "nyc": {
39 "sourceMap": false,
40 "instrument": false
41 },
42 "author": "pithu",
43 "homepage": "https://js-joda.github.io/js-joda",
44 "devDependencies": {
45 "@babel/cli": "^7.7.4",
46 "@babel/core": "^7.7.4",
47 "@babel/preset-env": "^7.7.4",
48 "@babel/register": "^7.7.4",
49 "babel-loader": "^8.0.6",
50 "babel-plugin-istanbul": "^5.2.0",
51 "chai": "^4.2.0",
52 "coveralls": "^3.0.8",
53 "karma": "^4.4.1",
54 "karma-chai-plugins": "^0.9.0",
55 "karma-chrome-launcher": "^3.1.0",
56 "karma-firefox-launcher": "^1.2.0",
57 "karma-mocha": "^1.3.0",
58 "karma-phantomjs-launcher": "^1.0.4",
59 "karma-sauce-launcher": "^2.0.2",
60 "karma-sourcemap-loader": "^0.3.7",
61 "karma-webpack": "^4.0.2",
62 "markdown-toc": "^1.2.0",
63 "mocha": "^6.2.2",
64 "phantomjs-prebuilt": "^2.1.16",
65 "rollup": "^1.27.4",
66 "rollup-plugin-babel": "^4.3.3",
67 "rollup-plugin-uglify": "^6.0.3",
68 "typescript": "^3.7.2",
69 "webpack": "^4.41.2"
70 },
71 "license": "BSD-3-Clause",
72 "dependencies": {}
73}