forked from richardeschloss/nuxt-highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·86 lines (86 loc) · 2.61 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
{
"name": "nuxt-highcharts",
"version": "1.0.7",
"description": "Highcharts for Nuxt",
"repository": "richardeschloss/nuxt-highcharts",
"license": "MIT",
"contributors": [
{
"name": "Richard Schloss <richard.e.schloss@protonmail.com>"
}
],
"files": [
"highcharts/components.js",
"highcharts/contexts.js",
"highcharts/module.js",
"highcharts/plugin.js"
],
"main": "highcharts/module.js",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "cross-env node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "cross-env NODE_ENV=test npm run test:unit:cov && npm run test:e2e:cov",
"test:unit": "cross-env TEST=unit ava --config unit.config.js",
"test:unit:cov": "cross-env TEST=unit nyc ava --timeout=10m --config unit.config.js",
"test:unit:watch": "cross-env TEST=unit ava --config unit.config.js --color --watch",
"test:e2e": "cross-env TEST=e2e ava --config e2e.config.js",
"test:e2e:cov": "cross-env TEST=e2e nyc --no-clean ava --timeout=10m --config e2e.config.js",
"test:e2e:watch": "cross-env TEST=e2e ava --config e2e.config.js --color --watch"
},
"dependencies": {
"highcharts": "^8.2.2"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/preset-env": "^7.9.6",
"@babel/register": "latest",
"@nuxtjs/eslint-config": "^1.1.2",
"@nuxtjs/eslint-module": "^1.2.0",
"@vue/test-utils": "^1.0.0-beta.33",
"ava": "^3.8.2",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"bootstrap-vue": "^2.14.0",
"browser-env": "^3.3.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-ignore-erb": "^0.1.1",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-nuxt": "^0.5.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^20.0.0",
"eslint-plugin-vue": "^6.2.2",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"node-fetch": "^2.6.1",
"nuxt": "^2.14.12",
"nuxt-socket-io": "^1.0.25",
"nuxt-test-utils": "latest",
"nyc": "^15.0.1",
"vue": "^2.6.12",
"vue-client-only": "^2.0.0",
"vue-meta": "^2.4.0",
"vue-no-ssr": "^1.1.1",
"vue-router": "^3.4.9",
"vue-template-compiler": "^2.6.12",
"vuex": "^3.6.0"
},
"optionalDependencies": {
"@highcharts/map-collection": "^1.1.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nuxt",
"highcharts",
"vue",
"vuejs"
]
}