You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.7 KiB
64 lines
1.7 KiB
{ |
|
"name": "@vue/component-compiler-utils", |
|
"version": "2.2.0", |
|
"description": "Lower level utilities for compiling Vue single file components", |
|
"main": "dist/index.js", |
|
"typings": "dist/index.d.ts", |
|
"scripts": { |
|
"lint": "prettier --write \"{lib,test}/**/*.ts\"", |
|
"test": "prettier --list-different \"{lib,test}/**/*.ts\" && jest", |
|
"build": "rm -rf dist && tsc", |
|
"prepublishOnly": "yarn build && conventional-changelog -p angular -r 2 -i CHANGELOG.md -s" |
|
}, |
|
"gitHooks": { |
|
"pre-commit": "lint-staged" |
|
}, |
|
"lint-staged": { |
|
"*.{ts,js}": [ |
|
"prettier --write", |
|
"git add" |
|
] |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/vuejs/component-compiler-utils.git" |
|
}, |
|
"keywords": [ |
|
"vue", |
|
"sfc", |
|
"component", |
|
"compiler" |
|
], |
|
"author": "Evan You", |
|
"license": "MIT", |
|
"bugs": { |
|
"url": "https://github.com/vuejs/component-compiler-utils/issues" |
|
}, |
|
"homepage": "https://github.com/vuejs/component-compiler-utils#readme", |
|
"devDependencies": { |
|
"@types/jest": "^22.2.3", |
|
"@types/node": "^9.4.7", |
|
"conventional-changelog-cli": "^1.3.22", |
|
"jest": "^22.4.2", |
|
"less": "^3.0.1", |
|
"lint-staged": "^7.2.0", |
|
"node-sass": "^4.8.3", |
|
"pug": "^2.0.3", |
|
"stylus": "^0.54.5", |
|
"ts-jest": "^22.4.2", |
|
"typescript": "^2.7.2", |
|
"vue-template-compiler": "^2.5.16", |
|
"yorkie": "^1.0.3" |
|
}, |
|
"dependencies": { |
|
"consolidate": "^0.15.1", |
|
"hash-sum": "^1.0.2", |
|
"lru-cache": "^4.1.2", |
|
"merge-source-map": "^1.1.0", |
|
"postcss": "^6.0.20", |
|
"postcss-selector-parser": "^3.1.1", |
|
"prettier": "1.13.7", |
|
"source-map": "^0.5.6", |
|
"vue-template-es2015-compiler": "^1.6.0" |
|
} |
|
}
|
|
|