-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "calendar-view",
"version": "1.0.0",
"description": "",
"main": "src/main/js/index.js",
"scripts": {
"mvnbuild": "npm run build",
"mvntest": "npm run test",
"test": "nyc --exclude 'src/test/js/**/*.js' mocha 'src/test/js/**/*.js'",
"coverage": "nyc --exclude 'src/test/js/**/*.js' mocha 'src/test/js/**/*.js' && nyc report --reporter=html",
"codecov": "nyc --exclude 'src/test/js/**/*.js' report --reporter=text-lcov > coverage.lcov && codecov",
"build": "webpack --mode production",
"dev": "webpack --watch --mode development"
},
"author": "Sven Schoenung <[email protected]>",
"license": "MIT",
"dependencies": {
"fullcalendar": "^3.9.0",
"smoothscroll-polyfill": "^0.4.3",
"tippy.js": "2.5.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.2",
"chai": "^4.1.2",
"codecov": "^3.0.4",
"css-loader": "^1.0.0",
"eslint": "^5.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"eslint-utils": "^1.4.1",
"jsdom": "^13.0.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^0.4.1",
"mixin-deep": "^1.3.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mockery": "^2.1.0",
"nyc": "^13.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"require-uncached": "^2.0.0",
"set-value": "^2.0.1",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8"
},
"engines": {
"node": ">=16.20.2"
},
"packageManager": "[email protected]"
}