-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "vue-mixins",
"description": "collection of mixins in vue",
"version": "0.3.6",
"homepage": "https://github.com/paulpflug/",
"author": {
"name": "Paul Pflugradt",
"email": "[email protected]"
},
"license": "MIT",
"main": "build/bundle.js",
"repository": {
"type": "git",
"url": "git://github.com/paulpflug/vue-mixins"
},
"engines": {
"node": "*"
},
"dependencies": {
"lodash": "^4.16.1",
"javascript-detect-element-resize": "^0.5.3"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.11.1",
"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",
"lodash": "^4.16.1",
"mocha": "^3.0.2",
"script-runner": "^0.1.5",
"vue": "^1.0.26",
"webpack": "^2.1.0-beta.25"
},
"keywords": [],
"readmeFilename": "README.md",
"scripts": {
"build:coffee": "coffee --no-header --compile --output . src/*.coffee",
"build:webpack": "webpack",
"build": "run-npm build:*",
"watch": "karma start --browsers Chromium --auto-watch --reporters spec",
"watch:coffee": "coffee --no-header --watch --output . src/*.coffee",
"test": "karma start --single-run",
"preversion": "npm test && npm run build",
"version": "git add .",
"postversion": "git push && git push --tags && npm publish"
}
}