-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "vue-compiler",
"description": "a simple cli wrapper around the vue-component-compiler",
"version": "2.0.0",
"homepage": "https://github.com/paulpflug/",
"author": {
"name": "Paul Pflugradt",
"email": "[email protected]"
},
"license": "MIT",
"bin": {
"vue-compiler": "./index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/paulpflug/vue-compiler"
},
"engines": {
"node": "*"
},
"main": "lib/index.js",
"dependencies": {
"commander": "^2.9.0",
"vueify": "^9.2.4"
},
"devDependencies": {
"atom-ui-reporter": "0.0.1",
"chai": "^3.5.0",
"coffee-script": "^1.11.1",
"mocha": "^3.1.2",
"pug": "^2.0.0-beta6",
"rimraf": "^2.5.4",
"stylus": "^0.54.5",
"vue-hot-reload-api": "^2.0.6",
"vueify-insert-css": "^1.0.0"
},
"keywords": [
"vue",
"component",
"compiler",
"cli"
],
"readmeFilename": "README.md",
"scripts": {
"clean": "rimraf lib/ && mkdir lib",
"prebuild": "npm run clean",
"build": "coffee --no-header --compile --output lib/ src/*.coffee",
"watch": "coffee --no-header --compile --watch --output lib/ src/*.coffee",
"test": "mocha",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish"
}
}