-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 3.42 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "heatmapjs-vue",
"version": "0.0.5",
"description": "heatmapjs component from vue",
"main": "dist/heatmapjs-vue.common.js",
"types": "src/index.d.ts",
"web": "dist/heatmapjs-vue.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"style": "dist/heatmapjs-vue.css",
"license": "MIT",
"contributors": [
{
"name": "nianqin",
"url": "https://github.com/nqdy666"
}
],
"bugs": {
"url": "https://github.com/nqdy666/heatmapjs-vue/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nqdy666/heatmapjs-vue.git"
},
"files": [
"src",
"dist",
"nuxt",
"es"
],
"scripts": {
"build": "scripts/build",
"watch": "rollup -c scripts/rollup.config.js --watch",
"docs-dev": "nuxt dev -c docs/nuxt.config.js",
"docs-gen": "nuxt generate -c docs/nuxt.config.js",
"docs-build": "nuxt build -c docs/nuxt.config.js",
"docs-publish": "scripts/docs-publish",
"test": "jest",
"lint": "eslint src scripts docs tests nuxt",
"release": "npm run build && npm run test && standard-version",
"release:only": "standard-version"
},
"dependencies": {
"heatmap.js": "^2.0.5",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/pwa": "^2.0.5",
"@vue/test-utils": "^1.0.0-beta.24",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"clean-css": "^4.1.9",
"codecov": "^3.0.2",
"codemirror": "^5.37.0",
"cross-env": "^5.1.5",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"gh-pages": "^1.1.0",
"highlight-loader": "^0.7.2",
"highlightjs": "^9.8.0",
"html-loader": "^0.5.4",
"jest": "^22.0.6",
"jest-canvas-mock": "^2.0.0-beta.1",
"jest-css-modules": "^1.1.0",
"markdown-loader": "^2.0.2",
"marked": "^0.7.0",
"node-sass": "^4.11.0",
"nuxt-edge": "^2.0.0-25440915.dcc92c6",
"opencollective-postinstall": "^2.0.0",
"postcss-rpxtorem": "^4.0.1",
"rollup": "^0.59.1",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-css-porter": "^0.1.2",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-postcss": "^1.6.3",
"rollup-plugin-scss": "^0.4.0",
"rollup-plugin-vue": "^4.3.2",
"rollup-watch": "^4.3.1",
"sass-loader": "^7.1.0",
"shelljs": "^0.8.3",
"standard-version": "^4.3.0",
"uglify-es": "^3.3.6",
"vue": "^2.5.17",
"vue-jest": "^2.1.1",
"vue-json-editor": "^1.2.3",
"vue-template-compiler": "^2.5.17"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"setupFiles": [
"jest-canvas-mock"
],
"testRegex": "spec.js$",
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "babel-jest",
".*\\.(vue)$": "vue-jest",
".*\\.(css)$": "jest-css-modules"
},
"coverageDirectory": "./coverage/"
},
"keywords": [
"Vue",
"VueJS",
"Component",
"Heatmapjs"
]
}