-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "vuepress-plugin-component-catalog",
"description": "Generating a component catalog of Vue.js.",
"version": "0.6.7",
"main": "dist/index.js",
"repository": "https://github.com/mya-ake/vuepress-plugin-component-catalog.git",
"bugs": {
"url": "https://github.com/mya-ake/vuepress-plugin-component-catalog/issues"
},
"author": "mya-ake <make.app.ts@gmail.com>",
"license": "MIT",
"scripts": {
"build:release": "run-s lint test:unit clean compile",
"lint": "tslint --config tslint.json 'src/**/*.ts' 'tests/**/*.ts'",
"lint:fix": "tslint --config tslint.json --fix 'src/**/*.ts' 'tests/**/*.ts'",
"compile": "tsc",
"clean": "rimraf dist",
"test:unit": "jest --config jest.config.js",
"test:unit:watch": "jest --config jest.config.js --watch",
"release": "np"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.12.11",
"babel-eslint": "^10.0.1",
"jest": "^23.6.0",
"np": "^4.0.2",
"npm-run-all": "^4.1.5",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.3.4000"
},
"peerDependencies": {
"@vuepress/plugin-register-components": "^1.0.0-alpha.0",
"vuepress": "^1.0.0-alpha.25"
},
"dependencies": {
"@vue/component-compiler-utils": "^2.6.0",
"chokidar": "^2.0.4",
"consola": "^2.3.0",
"express": "^4.16.4",
"minimatch": "^3.0.4",
"vue-template-compiler": "^2.5.17"
},
"files": [
"dist"
],
"keywords": [
"vue.js",
"vuepress",
"component",
"catalog"
]
}