forked from vuejs/vue-component-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.83 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
{
"name": "@vue/component-compiler",
"version": "4.2.4",
"description": "bundler agnostic API for compiling Vue SFC",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-component-compiler.git"
},
"keywords": [
"vue",
"compiler",
"sfc"
],
"author": "Rahul Kadyan",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-component-compiler/issues"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "rm -rf dist && npm run build",
"pretest": "npm run build",
"test": "jest",
"prerelease": "npm run test",
"release": "standard-version -a"
},
"homepage": "https://github.com/vuejs/vue-component-compiler#readme",
"devDependencies": {
"@types/clean-css": "^3.4.30",
"@types/jest": "^25.2.3",
"@types/node": "^9.4.7",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"conventional-changelog": "^1.1.24",
"jest": "^22.4.2",
"pug": "^3.0.1",
"puppeteer": "^1.3.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-image": "^1.0.2",
"rollup-plugin-node-resolve": "^3.3.0",
"sass": "^1.18.0",
"ts-jest": "^22.4.2",
"typescript": "^3.2.4",
"typescript-eslint-parser": "^15.0.0",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16"
},
"optionalDependencies": {
"less": "^3.9.0",
"pug": "^3.0.1",
"sass": "^1.18.0",
"stylus": "^0.54.5"
},
"peerDependencies": {
"postcss": ">=8.0",
"vue-template-compiler": "*"
},
"dependencies": {
"@vue/component-compiler-utils": "^3.3.0",
"clean-css": "^4.1.11",
"hash-sum": "^1.0.2",
"postcss-modules-sync": "^1.0.0",
"source-map": "0.6.*"
}
}