-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.1 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
{
"name": "vue-comps-tooltip",
"description": "a advanced tooltip",
"version": "1.1.0",
"homepage": "https://github.com/vue-comps",
"author": {
"name": "Paul Pflugradt",
"email": "paul.pflugradt@gmail.com"
},
"license": "MIT",
"main": "tooltip.js",
"repository": {
"type": "git",
"url": "git://github.com/vue-comps/vue-comps-tooltip"
},
"engines": {
"node": "*"
},
"dependencies": {
"vue-mixins": "^0.3.0"
},
"peerDependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"css-loader": "^0.25.0",
"gh-pages": "^0.11.0",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chai-dom": "^1.1.0",
"karma-chai-spies": "^0.1.4",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.26",
"karma-vue-component": "^0.1.0",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"pug": "^2.0.0-beta6",
"script-runner": "^0.1.5",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"template-html-loader": "0.0.3",
"velocity-animate": "^1.2.3",
"vue": "^1.0.26",
"vue-compiler": "^0.3.0",
"vue-dev-server": "^0.2.10",
"vue-html-loader": "^1.2.3",
"vue-loader": "^8.5.2",
"vue-style-loader": "^1.0.0",
"webpack": "^1.13.2"
},
"keywords": [
"tooltip",
"component",
"vue"
],
"readmeFilename": "README.md",
"scripts": {
"build:vue": "NODE_ENV=production vue-compiler --out . src/*.vue",
"build:webpack": "webpack --config build/webpack.config.coffee",
"build": "run-npm build:*",
"dev": "vue-dev-server",
"watch": "karma start --browsers Chromium --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"
}
}