-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "vue-clusterize",
"description": "clusterize - done in vue",
"version": "0.5.1",
"homepage": "https://github.com/paulpflug",
"author": {
"name": "Paul Pflugradt",
"email": "[email protected]"
},
"license": "MIT",
"main": "clusterize.js",
"repository": {
"type": "git",
"url": "git://github.com/paulpflug/vue-clusterize"
},
"engines": {
"node": "*"
},
"dependencies": {
"vue-mixins": "^0.2.10"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"css-loader": "^0.23.1",
"gh-pages": "^0.11.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chai-dom": "^1.1.0",
"karma-chai-spies": "^0.1.4",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-vue-component": "^0.1.0",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"pug": "^2.0.0-beta3",
"template-html-loader": "0.0.3",
"vue": "^1.0.25",
"vue-compiler": "^0.3.0",
"vue-comps-tooltip": "^0.2.0",
"vue-dev-server": "^0.2.10",
"vue-html-loader": "^1.2.2",
"vue-loader": "^8.5.2",
"webpack": "^1.13.1"
},
"keywords": [
"clusterize",
"vue",
"invisible pagination"
],
"readmeFilename": "README.md",
"scripts": {
"build": "NODE_ENV=production vue-compiler --out . src/*.vue",
"dev": "vue-dev-server",
"watch": "karma start --browsers Chrome --auto-watch --reporters spec",
"test": "karma start --single-run",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish",
"ghpages": "vue-dev-server --static static/ && gh-pages -d static"
}
}