-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 3.77 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@system76/components",
"version": "0.0.0-development",
"description": "System76 standard Vue components",
"author": "System76 <[email protected]> (https://system76.com)",
"license": "GPL-3.0",
"main": "dist/index.common.js",
"web": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"source": "src/index.js",
"scripts": {
"start": "start-storybook",
"build": "npm run build:library && npm run build:storybook",
"build:library": "NODE_ENV=production rollup -c",
"build:storybook": "build-storybook -o docs",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint --ext js,vue --ignore-path .gitignore .",
"lint:js:fix": "eslint --fix --ext js,vue --ignore-path .gitignore .",
"test": "ava",
"test:browser": "testcafe remote --qr-code ./test/browser/**",
"commit": "git-cz"
},
"homepage": "https://components.origin76.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/system76/components.git"
},
"bugs": {
"url": "https://github.com/system76/components/issues"
},
"keywords": [
"components",
"frontend",
"system76",
"vue"
],
"files": [
"dist",
"README.md"
],
"sideEffects": [
"*.css"
],
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^2.0.10"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/preset-env": "^7.13.10",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^2.0.10",
"@storybook/addon-a11y": "^5.3.21",
"@storybook/addon-backgrounds": "^5.3.21",
"@storybook/addon-centered": "^5.3.21",
"@storybook/addon-knobs": "^5.3.21",
"@storybook/addon-viewport": "^5.3.21",
"@storybook/vue": "^5.3.21",
"@system76/design": "^5.4.2",
"@system76/eslint-config": "^2.0.0",
"@vue/babel-preset-app": "^4.5.12",
"@vue/test-utils": "^1.1.3",
"ava": "^3.15.0",
"babel-loader": "^8.2.2",
"babel-preset-vue": "^2.0.2",
"browser-env": "^3.3.0",
"commitizen": "^4.2.3",
"css-loader": "^3.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.8.0",
"eslint-plugin-testcafe": "^0.2.1",
"http-server": "^0.12.3",
"pixelmatch": "^5.2.1",
"pngjs": "^4.0.1",
"postcss-color-mod-function": "^3.0.3",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^3.0.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-postcss": "^2.9.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.3.1",
"rollup-plugin-vue": "^5.1.9",
"testcafe": "^1.12.0",
"vue": "^2.6.12",
"vue-docgen-api": "^4.35.0",
"vue-docgen-loader": "^1.5.0",
"vue-loader": "^15.9.6",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.12"
},
"ava": {
"babel": {
"compileAsTests": [
"./test/_browser.js",
"./test/_setup.js"
]
},
"files": [
"test/spec/**/*"
],
"require": [
"./test/_browser.js",
"./test/_setup.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}