-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.45 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
{
"name": "easy-dc-dash",
"version": "0.3.10",
"author": "Naoto Kato <[email protected]>",
"license": "MIT",
"main": "dist/bundle.js",
"module": "dist/bundle.es.js",
"jsnext:main": "dist/bundle.es.js",
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.0",
"http-server": "^0.9.0",
"jest": "^21.2.1",
"jest-serializer-vue": "^0.3.0",
"less": "^2.7.3",
"rollup": "^0.48.2",
"rollup-analyzer-plugin": "^1.1.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.2.4",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.2.1",
"rollup-plugin-scss": "^0.2.0",
"rollup-plugin-sourcemaps": "^0.4.1",
"rollup-plugin-vue": "^2.5.2",
"rollup-watch": "^3.2.2",
"topojson-simplify": "^3.0.2",
"vue-jest": "^1.2.0",
"vue-server-renderer": "^2.5.9",
"vue-template-compiler": "2.5.2",
"vue-test-utils": "^1.0.0-beta.6"
},
"dependencies": {
"assign-deep": "0.4.5",
"bootstrap": "4.0.0-alpha.6",
"crossxfilters": "git+https://github.com/plaidev/crossxfilters.git",
"dc": "2.1.8",
"font-awesome": "4.7.0",
"iconv-lite": "0.4.19",
"topojson": "3.0.0",
"vue": "2.5.2"
},
"scripts": {
"build": "rollup -c -m",
"watch": "rollup -c -m -w",
"watch-lite": "rollup -c rollup.watch.config.js -m -w",
"http-server": "http-server -i",
"simplify": "cd ./libs/json; sh simplify.sh",
"test": "jest"
},
"files": ["dist", "README.md"],
"jest": {
"moduleFileExtensions": ["js", "vue"],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/libs/chart/$1",
"^.+\\.(css|scss)$": "<rootDir>/test/helpers/dummy.css"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/vue",
"<rootDir>/node_modules/dc",
"<rootDir>/node_modules/d3",
"<rootDir>/node_modules/crossxfilters"
],
"modulePathIgnorePatterns": ["<rootDir>/libs"],
"snapshotSerializers": ["<rootDir>/node_modules/jest-serializer-vue"],
"collectCoverage": true,
"collectCoverageFrom": ["libs/**/*.js", "libs/**/*.vue"],
"mapCoverage": true
}
}