-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
79 lines (79 loc) · 2.25 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
{
"name": "vue-charts",
"description": "Google Charts component for Vue.js",
"version": "0.2.1",
"author": {
"name": "Hayden Bickerton",
"email": "[email protected]"
},
"homepage": "https://github.com/haydenbbickerton/vue-charts#readme",
"jsnext:main": "src/main.js",
"license": "MIT",
"main": "dist/vue-charts.common.js",
"files": [
"dist/vue-charts.js",
"dist/vue-charts.min.js",
"dist/vue-charts.common.js",
"src"
],
"scripts": {
"build": "node build/build.js",
"clean": "rm -rf dist/*",
"lint": "eslint src/** build/**.js",
"unit": "karma start build/karma.conf.js --single-run",
"test": "npm run lint && npm run unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haydenbbickerton/vue-charts.git"
},
"bugs": {
"url": "https://github.com/haydenbbickerton/vue-charts/issues"
},
"dependencies": {
"lodash": "^4.3.0",
"vue": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-espower": "^2.0.0",
"babel-plugin-external-helpers": "^6.8.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015-rollup": "^1.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chromedriver": "^2.21.2",
"eslint": "^2.9.0",
"eslint-config-standard": "^5.3.1",
"eslint-loader": "^1.1.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"function-bind": "^1.1.0",
"istanbul-instrumenter-loader": "^0.1.3",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-coverage": "^0.5.5",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"lodash": "^4.3.0",
"lolex": "^1.4.0",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"nightwatch": "^0.8.18",
"phantomjs-prebuilt": "^2.1.7",
"rollup": "^0.21.1",
"rollup-plugin-babel": "^2.2.0",
"rollup-plugin-replace": "^1.1.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.6.1",
"webpack": "^1.12.9"
}
}