-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.34 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
76
77
78
{
"name": "vue-dev-server",
"description": "a small development server for building `vue` components",
"version": "2.0.4",
"homepage": "https://github.com/paulpflug/",
"author": {
"name": "Paul Pflugradt",
"email": "[email protected]"
},
"license": "MIT",
"bin": {
"vue-dev-server": "./index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/paulpflug/vue-dev-server"
},
"engines": {
"node": "*"
},
"main": "lib/index.js",
"dependencies": {
"chokidar": "^1.6.0",
"coffee-script": "^1.11.1",
"commander": "^2.9.0",
"cp": "^0.2.0",
"cpr": "^2.0.0",
"ip": "^1.1.3",
"koa": "^1.2.4",
"koa-hot-dev-webpack": "^0.1.1",
"koa-sendfile": "^2.0.0",
"koa-static": "^2.0.0",
"script-runner": "^0.1.5",
"vue-hot-reload-api": "^2.0.6",
"vue-router": "^2.0.0",
"vueify-insert-css": "^1.0.0",
"webpack": "^1.13.2"
},
"devDependencies": {
"casperjs": "^1.1.3",
"coffee-loader": "^0.7.2",
"css-loader": "^0.25.0",
"phantomjs-prebuilt": "^2.1.13",
"rimraf": "^2.5.4",
"script-runner": "^0.1.5",
"stylus": "^0.54.5",
"vue": "^2.0.1",
"vue-compiler": "^2.0.0",
"vue-html-loader": "^1.2.3",
"vue-loader": "^9.5.1",
"vue-style-loader": "^1.0.0"
},
"keywords": [
"vue",
"dev-server",
"cli"
],
"readmeFilename": "README.md",
"scripts": {
"clean": "rimraf lib/ && mkdir lib",
"prebuild": "npm run clean",
"build": "run-npm --parallel build:*",
"build:pug": "pug --out app/ app/index.pug",
"build:coffee": "coffee --no-header --compile --output lib/ src/*.coffee",
"build:vue": "vue-compiler --out app/ app/main.vue",
"watch": "run-npm --parallel watch:*",
"watch:pug": "pug --watch ---out app/ app/index.pug",
"watch:coffee": "coffee --no-header --compile --watch --output lib/ src/*.coffee",
"dev": "run-npm --parallel watch './index.js --folder test/dev/'",
"static": "./index.js --folder test/dev/ --static static/",
"test": "run-npm --parallel dev --master \"run-npm 'sleep 1' test:*\"",
"test:compile": "coffee --compile --output test/ test/*.coffee",
"test:casperjs": "casperjs --verbose test test/index.js",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish"
}
}