| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {
- "name": "fullcalendar",
- "title": "FullCalendar",
- "description": "Full-sized drag & drop event calendar",
- "keywords": [
- "calendar",
- "event",
- "full-sized"
- ],
- "homepage": "https://fullcalendar.io/",
- "bugs": "https://fullcalendar.io/reporting-bugs",
- "repository": {
- "type": "git",
- "url": "https://github.com/fullcalendar/fullcalendar.git"
- },
- "license": "MIT",
- "author": {
- "name": "Adam Shaw",
- "email": "[email protected]",
- "url": "http://arshaw.com/"
- },
- "copyright": "2019 Adam Shaw",
- "main": "main.js",
- "devDependencies": {
- "@types/jasmine": "^3.3.7",
- "@types/jasmine-jquery": "^1.5.33",
- "@types/jquery": "^3.3.29",
- "@types/luxon": "^1.4.1",
- "bootstrap": "^3.4.0",
- "chokidar": "^2.0.4",
- "components-jqueryui": "github:components/jqueryui",
- "concurrently": "^4.1.0",
- "css-loader": "^0.28.11",
- "dragula": "^3.7.2",
- "eslint": "^4.19.1",
- "eslint-config-standard": "^11.0.0",
- "eslint-plugin-import": "^2.14.0",
- "eslint-plugin-node": "^5.2.1",
- "eslint-plugin-promise": "^3.8.0",
- "eslint-plugin-standard": "^3.1.0",
- "glob": "^7.1.3",
- "gulp": "^3.9.1",
- "gulp-cssmin": "^0.1.7",
- "gulp-eslint": "^4.0.0",
- "gulp-filter": "^4.0.0",
- "gulp-modify-file": "^1.0.0",
- "gulp-rename": "^1.4.0",
- "gulp-shell": "^0.6.5",
- "gulp-uglify": "^2.0.0",
- "gulp-zip": "^3.2.0",
- "jasmine-core": "2.5.2",
- "jasmine-jquery": "^2.1.1",
- "jquery": "^3.3.1",
- "jquery-simulate": "github:jquery/jquery-simulate",
- "karma": "^0.13.22",
- "karma-chrome-launcher": "^2.2.0",
- "karma-jasmine": "^1.1.2",
- "karma-sourcemap-loader": "^0.3.7",
- "karma-verbose-reporter": "0.0.6",
- "luxon": "^1.10.0",
- "mkdirp": "^0.5.1",
- "moment": "^2.23.0",
- "moment-timezone": "^0.5.23",
- "native-promise-only": "^0.8.1",
- "node-sass": "^4.11.0",
- "rollup": "^1.1.0",
- "rollup-plugin-multi-entry": "^2.1.0",
- "rollup-plugin-node-resolve": "^4.0.0",
- "rollup-plugin-scss": "^0.4.0",
- "rollup-plugin-sourcemaps": "^0.4.2",
- "rollup-plugin-typescript2": "^0.18.1",
- "rrule": "^2.6.0",
- "superagent": "^3.8.3",
- "tslib": "^1.9.3",
- "tslint": "^5.12.1",
- "tslint-config-standard": "^7.1.0",
- "typescript": "^3.2.2",
- "xhr-mock": "^2.4.1",
- "yargs": "^4.8.1"
- },
- "scripts": {
- "build": "tsc && npm run rollup && npm run sass",
- "watch": "concurrently --raw 'tsc --watch --sourceMap' 'npm run rollup-watch' 'npm run sass-watch'",
- "clean": "rm -rf dist archives tmp",
- "rollup": "rollup -c --environment BUILD:production",
- "rollup-watch": "sleep 5 && rollup -c --environment BUILD:development --watch",
- "sass": "sass --update --sourcemap=none $(bin/sass-args.js)",
- "sass-watch": "sass --watch $(bin/sass-args.js)",
- "test": "karma start karma.config.js --auto-watch",
- "test-single": "karma start karma.config.js --browsers ChromeHeadless_custom --single-run",
- "test-ci": "gulp dist && npm run test-single",
- "lint": "gulp lint"
- }
- }
|