forked from QingWei-Li/vue-trend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "vuetrend",
"version": "0.2.1",
"description": "Simple, elegant spark lines for Vue.js",
"main": "dist/vue-trend.common.js",
"module": "dist/vue-trend.esm.js",
"unpkg": "dist/vue-trend.js",
"files": [
"dist"
],
"scripts": {
"test": "eslint src && jest",
"dev": "vue build docs/app.js -c docs/vue.config.js",
"docs:build": "vue build docs/app.js -c docs/vue.config.js --prod --dist ./docs/dist",
"deploy": "npm run docs:build && gh-pages -d docs/dist",
"build": "rollup -c --environment BUILD && uglifyjs dist/vue-trend.js > dist/vue-trend.min.js"
},
"keywords": [
"vue",
"trend",
"svg",
"graph",
"data-visualization",
"component"
],
"repository": {
"type": "git",
"url": "https://github.com/QingWei-Li/vue-trend.git"
},
"author": "qingwei-li <[email protected]> (https://github.com/QingWei-Li)",
"license": "MIT",
"peerDependencies": {
"vue": "^2.2.0"
},
"devDependencies": {
"eslint": "^3.17.1",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-vue": "^2.0.1",
"gh-pages": "^0.12.0",
"hanabi": "^0.4.0",
"jest": "^19.0.2",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"uglify-js": "^2.8.10",
"vue": "^2.2.0",
"vue-github-badge": "^1.0.0",
"vue-template-compiler": "^2.2.0"
}
}