forked from richardeschloss/nuxt-highcharts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.17 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
{
"name": "nuxt-highcharts",
"version": "3.1.1",
"description": "Highcharts for Nuxt",
"repository": "richardeschloss/nuxt-highcharts",
"license": "MIT",
"type": "module",
"contributors": [
{
"name": "Richard Schloss <[email protected]>"
}
],
"imports": {
"#app": "./test/utils/plugin.js",
"#build/*": "./test/build/*",
"#root/*": "./*"
},
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "nuxi preview",
"generate": "nuxi generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "ava --color --watch",
"test:cov": "c8 ava --timeout=10m"
},
"dependencies": {
"highcharts": "^11.1.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.1",
"ava": "^3.15.0",
"browser-env": "^3.3.0",
"c8": "^7.10.0",
"eslint": "^7.32.0",
"jsdom-global": "^3.0.2",
"nuxt": "^3.5.1"
},
"optionalDependencies": {
"@highcharts/map-collection": "^2.0.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nuxt",
"highcharts",
"vue",
"vuejs"
]
}