-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.46 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
{
"name": "@fluentify/fluentify",
"version": "0.2.0",
"description": "Fluent design system components based framework for Vue.js",
"author": "Alexander Wennerstrøm <[email protected]>",
"scripts": {
"build": "vue-cli-service build",
"test": "npm run coverage",
"clean": "rimraf dist",
"coverage": "vue-cli-service test:unit",
"lint": "npm run lint:css && npm run lint:js && vue-cli-service lint",
"lint:css": "stylelint src/**/*.{vue,css,scss}",
"lint:js": "npx eslint --ext js --ext jsx --ext vue src src/**/*.spec.js",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:staged": "lint-staged",
"prepublish": "npm run build",
"pretest": "npm run lint",
"storybook:build": "build-storybook",
"storybook:serve": "start-storybook -p 9000"
},
"dependencies": {
"vue": "^2.6.12"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-links": "^6.1.20",
"@storybook/vue": "^6.2.9",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "^4.5.11",
"@vue/cli-plugin-unit-mocha": "~4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.1.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-vue": "^2.0.2",
"chai": "^4.3.4",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.2.0",
"lint-staged": "^10.5.4",
"node-sass": "^5.0.0",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"stylelint": "^13.12.0",
"vue-template-compiler": "^2.6.12"
},
"browserslist": [
"last 2 versions"
],
"browser": "dist/fluentify.js",
"bugs": {
"url": "https://github.com/FluentifyJs/fluentify/issues"
},
"homepage": "https://github.com/FluentifyJs/fluentify#readme",
"keywords": [
"vue",
"vuejs",
"fluent",
"design",
"framework",
"components"
],
"license": "MIT",
"lint-staged": {
"*.{vue,jsx,js}": [
"npm run lint:js"
],
"*.{vue,css}": [
"npx stylefmt",
"npm run lint:css"
]
},
"main": "dist/fluentify.common.js",
"module": "dist/fluentify.esm.js",
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "git+https://github.com/FluentifyJs/fluentify.git"
},
"style": "dist/fluentify.css",
"unpkg": "dist/fluentify.js"
}