-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "gulp-vue-file",
"version": "0.1.5",
"description": "Gulp plugin for compiling .vue file",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint index.js test.js",
"preversion": "npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"pretest": "npm run lint",
"test": "tape test.js | tap-dot",
"coverage": "nyc --reporter=lcov tape test.js | tap-dot"
},
"repository": {
"type": "git",
"url": "https://github.com/dumberjs/gulp-vue-file"
},
"keywords": [
"vue",
"gulpplugin"
],
"author": "Chunpeng Huo",
"license": "MIT",
"bugs": {
"url": "https://github.com/dumberjs/gulp-vue-file/issues"
},
"homepage": "https://github.com/dumberjs/gulp-vue-file#readme",
"dependencies": {
"@vue/component-compiler": "^4.2.3",
"plugin-error": "^1.0.1",
"vinyl-sourcemaps-apply": "^0.2.1",
"vue-template-compiler": "^2.6.12"
},
"devDependencies": {
"eslint": "^7.18.0",
"gulp": "^4.0.2",
"gulp-sort": "^2.0.0",
"nyc": "^15.1.0",
"postcss-url": "^8.0.0",
"standard-changelog": "^2.0.27",
"stream-assert": "^2.0.3",
"tap-dot": "^2.0.0",
"tape": "^5.1.1"
}
}