-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 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
{
"name": "vue-rate-it",
"version": "2.1.0",
"description": "A highly customisable rating component for Vue 2.x.",
"main": "dist/vue-rate-it.min.js",
"scripts": {
"test": "karma start",
"test:watch": "karma start --single-run=false",
"cdn": "webpack --env=cdn --progress --hide-modules",
"dist": "webpack --env=webpack.dist --progress --hide-modules",
"build:glyphs": "cd build && node font-awesome",
"build:dist": "npm-run-all --parallel cdn dist",
"dev": "webpack-dev-server --content-base ./examples --env=dev --open --hot",
"dev:ext": "webpack-dev-server --content-base ./examples/extending --env=extending --open --hot",
"docs": "webpack-dev-server --content-base ./docs --env=docs --open --hot",
"build:docs": "cross-env NODE_ENV=production webpack --env=docs --progress --hide-modules",
"lint": "eslint src --ext=js,vue || exit 0",
"lint:fix": "eslint src --ext=js,vue --fix || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/craigh411/vue-rate-it.git"
},
"files": [
"dist",
"glyphs",
"src",
"glyphs.js"
],
"keywords": [
"rating",
"rate",
"vue",
"vue.js",
"vue 2"
],
"author": "Craig Humphreys",
"license": "MIT",
"bugs": {
"url": "https://github.com/craigh411/vue-rate-it/issues"
},
"homepage": "https://github.com/craigh411/vue-rate-it#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.23.0",
"cross-env": "^4.0.0",
"css-loader": "^0.25.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-vue": "^2.0.1",
"file-loader": "^0.9.0",
"font-awesome": "^4.7.0",
"jasmine": "^2.5.3",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.3",
"npm-run-all": "^4.0.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"vue": "^2.1.8",
"vue-loader": "^11.1.4",
"vue-router": "^2.4.0",
"vue-template-compiler": "^2.2.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.2.0"
}
}