This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 2.67 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
{
"name": "@creativecommons/vocabulary-components",
"version": "0.3.0",
"description": "Vue components implementing a cohesive design system to unite the web facing Creative Commons",
"author": "Creative Commons (https://creativecommons.org)",
"scripts": {
"docs:serve": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"index": "node library/build.js",
"build": "npm run index && vue-cli-service build --target lib --entry ./src/index.js",
"watch": "npm run build -- --watch",
"prepare": "husky install"
},
"license": "MIT",
"type": "commonjs",
"main": "dist/vocabulary-components.umd.min.js",
"browser": "dist/vocabulary-components.umd.min.js",
"module": "dist/vocabulary-components.common.js",
"unpkg": "dist/vocabulary-components.umd.min.js",
"files": [
"dist/*.{js,css,map}"
],
"dependencies": {
"@creativecommons/cc-assets": "^0.1.0",
"@creativecommons/vocabulary-fonts": "^0.1.1",
"@creativecommons/vocabulary-styles": "^0.2.1",
"@fortawesome/fontawesome-svg-core": "^1.3.0-beta3",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^6.0.0-beta3",
"@fortawesome/vue-fontawesome": "^2.0.6",
"core-js": "^3.6.5",
"focus-trap-vue": "^1.1.0",
"sass": "^1.47.0",
"twemoji": "^13.0.1",
"vue-i18n": "^8.20.0"
},
"devDependencies": {
"@kazupon/vue-i18n-loader": "^0.5.0",
"@vue/cli-plugin-babel": "^4.5.6",
"@vue/cli-plugin-eslint": "^4.5.6",
"@vue/cli-plugin-unit-jest": "^4.5.6",
"@vue/cli-service": "^4.5.6",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.3.0",
"@vuepress/plugin-back-to-top": "^1.9.7",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.2.2",
"babel-loader": "^8.0.6",
"bulma": "^0.9.1",
"chalk": "^4.1.0",
"eslint-plugin-vue": "^8.4.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"sass-loader": "^10.2.1",
"vue-cli-plugin-i18n": "^2.3.1",
"vue-svg-loader": "^0.16.0",
"vuepress": "^1.9.7"
},
"bugs": "https://github.com/creativecommons/vocabulary-components/issues/",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/creativecommons"
},
{
"type": "donations",
"url": "https://www.classy.org/give/308451/#!/donation/checkout"
}
],
"keywords": [
"ui",
"ux",
"design",
"design system",
"components",
"vue components",
"library"
],
"repository": {
"type": "git",
"url": "https://github.com/creativecommons/vocabulary-components.git"
}
}