-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.05 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
{
"name": "@system76/pop-vue",
"version": "0.0.0-development",
"description": "Vue components designed to look like Pop!_OS",
"author": "System76 <hosting@system76.com> (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",
"style": "dist/index.esm.css",
"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",
"commit": "git-cz",
"release": "semantic-release"
},
"homepage": "https://system76.github.io/pop-vue/",
"repository": {
"type": "git",
"url": "git+https://github.com/system76/pop-vue.git"
},
"bugs": {
"url": "https://github.com/system76/pop-vue/issues"
},
"keywords": [
"pop-os",
"linux",
"frontend",
"system76"
],
"files": [
"dist",
"README.md"
],
"sideEffects": [
"*.css"
],
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@storybook/addon-centered": "^5.3.9",
"@storybook/addon-knobs": "^5.3.9",
"@storybook/addon-viewport": "^5.3.9",
"@storybook/vue": "^5.3.9",
"@system76/design": "^3.0.0",
"@system76/eslint-config": "^2.0.0",
"@vue/babel-preset-app": "^4.1.2",
"@vue/test-utils": "^1.0.0-beta.31",
"ava": "^2.4.0",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"browser-env": "^3.3.0",
"commitizen": "^4.0.3",
"css-loader": "^3.4.2",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^8.0.0",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^3.0.0",
"rollup": "^1.30.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-postcss": "^2.0.5",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-vue": "^5.1.6",
"semantic-release": "^15.13.24",
"vue": "^2.6.11",
"vue-loader": "^15.8.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11"
},
"ava": {
"require": [
"./test/_browser.js",
"./test/_setup.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}