-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
98 lines (98 loc) · 2.33 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
{
"name": "laue",
"version": "0.2.1",
"description": "Modern charts for Vue.js",
"main": "dist/laue.umd.js",
"module": "dist/laue.js",
"sideEffects": false,
"scripts": {
"watch:lib": "rollup -c -w",
"watch:docs": "nuxt",
"build:lib": "rollup -c --environment BUILD:production",
"build:docs": "nuxt generate",
"lint": "eslint src --fix",
"dev": "run-p watch:*",
"build": "run-p build:*",
"pub": "sh ./scripts/release.sh",
"dev:test": "jest --watch",
"test": "jest --coverage",
"deploy:docs": "gh-pages -d website/dist -t -r [email protected]:QingWei-Li/laue.git"
},
"repository": "QingWei-Li/laue",
"files": [
"dist",
"src"
],
"keywords": [
"chart",
"svg",
"vue",
"component",
"charts",
"pie",
"line",
"bar",
"trend",
"area",
"graph"
],
"author": "qingwei-li <[email protected]> (https://github.com/QingWei-Li)",
"homepage": "https://laue.js.org",
"license": "MIT",
"eslintConfig": {
"extends": "xo-space/browser",
"rules": {
"semi": [
2,
"never"
],
"no-mixed-operators": "off"
}
},
"jest": {
"transform": {
"^.+\\.js$": "buble-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!d3-)"
],
"snapshotSerializers": [
"jest-serializer-vue"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.js"
]
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.12",
"buble": "^0.19.3",
"buble-jest": "^1.0.0",
"conventional-changelog-cli": "^1.3.21",
"eslint": "^4.18.2",
"eslint-config-xo-space": "^0.18.0",
"eslint-plugin-jest": "^21.15.0",
"gh-pages": "^1.1.0",
"glob": "^7.1.2",
"highlight.js": "^9.12.0",
"jest": "^22.4.3",
"jest-serializer-vue": "^1.0.0",
"markdown-it-toc-and-anchor": "^4.1.2",
"modern-normalize": "^0.4.0",
"npm-run-all": "^4.1.2",
"nuxt": "^1.4.0",
"rollup": "^0.56.5",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-uglify": "^3.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-github-badge": "^1.0.1",
"vue-markdown-loader": "^2.4.1",
"ware-loader": "^0.2.4"
},
"dependencies": {
"d3-array": "^1.2.1",
"d3-shape": "^1.2.0"
}
}