-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
67 lines (67 loc) · 1.9 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-parallax",
"description": "Scrolls a image slower than the window to create a neat optical effect",
"version": "2.1.3",
"homepage": "https://github.com/vue-comps",
"author": {
"name": "Paul Pflugradt",
"email": "paul.pflugradt@gmail.com"
},
"license": "MIT",
"main": "parallax.js",
"repository": {
"type": "git",
"url": "git://github.com/vue-comps/vue-parallax"
},
"engines": {
"node": "*"
},
"dependencies": {
"vue-mixins": "^0.3.4"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.11.1",
"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.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.26",
"karma-vue-component": "^2.0.1",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.2",
"pug": "^2.0.0-beta6",
"script-runner": "^0.1.5",
"vue": "^2.0.2",
"vue-compiler": "^2.0.0",
"vue-dev-server": "^2.0.0",
"vue-html-loader": "^1.2.3",
"vue-loader": "^9.5.3",
"webpack": "^1.13.2"
},
"keywords": [
"parallax",
"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"
}
}