-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.92 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.92 KB
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
99
100
101
{
"name": "vuent",
"version": "0.7.0",
"description": "Vue.js components implementing Microsoft Fluent Design",
"author": {
"name": "Artur Mizera",
"email": "arturkoduje@outlook.com"
},
"engines": {
"node": ">=12"
},
"license": "MIT",
"main": "dist/vuent.cjs.js",
"module": "dist/vuent.esm.js",
"browser": "dist/vuent.umd.js",
"homepage": "https://vuentjs.org",
"repository": {
"type": "git",
"url": "https://github.com/arturmiz/vuent"
},
"bugs": {
"url": "https://github.com/arturmiz/vuent/issues"
},
"keywords": [
"components",
"fluent",
"fluent-design",
"frontend",
"vue"
],
"scripts": {
"build": "rollup -c && npm run min:css",
"dev": "rollup -c -w",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "eslint --ext .js,.vue .",
"min:css": "postcss dist/vuent.css -o dist/vuent.min.css",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"test": "jest --config=jest.config.json",
"test:ci": "npm run test:coverage && codecov",
"test:dev": "jest --config=jest.config.json --watch",
"test:coverage": "jest --config=jest.config.json --coverage",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"peerDependencies": {
"vue": "~2.5.x"
},
"devDependencies": {
"@babel/core": "~7.1.0",
"@babel/preset-env": "~7.1.0",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@popperjs/core": "~2.0.6",
"@storybook/addon-a11y": "6.3.2",
"@storybook/addon-essentials": "6.3.2",
"@storybook/addon-links": "6.3.2",
"@storybook/addon-storysource": "6.3.2",
"@storybook/addons": "6.3.2",
"@storybook/cli": "6.3.2",
"@storybook/vue": "6.3.2",
"@vue/test-utils": "1.0.0-beta.28",
"autoprefixer": "~9.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "~24.5.0",
"babel-loader": "8.2.2",
"babel-preset-vue": "2.0.2",
"codecov": "~3.7.1",
"conventional-changelog-cli": "2.1.1",
"css-mqpacker": "~7.0.0",
"cssnano": "~4.1.0",
"eslint": "~5.13.0",
"eslint-plugin-jest": "~22.2.2",
"eslint-plugin-vue": "~5.1.0",
"husky": "4.3.4",
"jest": "~24.5.0",
"jest-serializer-vue": "~2.0.2",
"postcss-cli": "~6.0.0",
"rollup": "~1.14.4",
"rollup-plugin-babel": "~4.3.2",
"rollup-plugin-commonjs": "~10.0.0",
"rollup-plugin-css-only": "~1.0.0",
"rollup-plugin-license": "~0.13.0",
"rollup-plugin-node-resolve": "~5.0.1",
"rollup-plugin-terser": "~5.0.0",
"rollup-plugin-vue": "~5.1.2",
"sass": "1.30.0",
"sass-loader": "7.3.0",
"style-loader": "2.0.0",
"vue": "2.5.16",
"vue-jest": "~3.0.2",
"vue-loader": "15.9.5",
"vue-template-compiler": "2.5.16",
"vuepress": "0.14.11"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}