forked from mitevpi/metavue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.58 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "metavue",
"version": "0.1.5",
"description": "Utility for extracting metadata from Vue.js applications & components related to code style and architecture.",
"license": "MIT",
"repository": "mitevpi/metavue",
"main": "bin/index.js",
"author": {
"name": "Petr Mitev",
"email": "p.mitevpi@gmail.com",
"url": "https://mitevpi.com/"
},
"files": [
"dist",
"src",
"bin/viz/index.html",
"bin/viz/metaviz.min.js",
"bin/index.js",
"README.md",
"samples"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint . --fix",
"docs": "documentation build src/index.js -f md -o docs/README.md && documentation build src/** -f html -o docs",
"postdocs": "",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "npm run build:module && npm run build:viz",
"build:module": "babel src -d dist",
"build:viz": "node_modules/.bin/rollup viz-vue/app.js --file bin/viz/metaviz.min.js --config --format umd --compact",
"prerelease": "npm run lint && npm test & npm run build && npm run docs",
"release": "standard-version",
"postpublish": "git push origin master --follow-tags"
},
"bin": {
"metavue": "./bin/index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"verbose": true
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"vue",
"vuejs",
"meta",
"metadata",
"relationship",
"tree",
"architecture",
"structure",
"component"
],
"dependencies": {
"yargs": "15.0.2"
},
"devDependencies": {
"@babel/cli": "7.7.5",
"@babel/core": "7.7.5",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/preset-env": "7.7.6",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"documentation": "12.1.4",
"eslint": "6.7.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jest": "23.1.1",
"eslint-plugin-prettier": "3.1.2",
"husky": "3.1.0",
"jest": "24.9.0",
"lint-staged": "9.5.0",
"open-cli": "5.0.0",
"prettier": "1.19.1",
"rimraf": "3.0.0",
"rollup": "1.27.13",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-babel-minify": "9.1.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-watch": "4.3.1",
"standard-version": "7.0.1"
}
}