-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
106 lines (106 loc) · 3.03 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
{
"name": "@fortawesome/vue-fontawesome",
"description": "Official Vue component for Font Awesome 6",
"version": "3.0.8",
"main": "index.js",
"files": [
"README.md",
"LICENSE.txt",
"UPGRADING.md",
"CHANGELOG.md",
"index.d.ts",
"index.es.js",
"index.js",
"src/components/**.js",
"src/**.js"
],
"jest": {
"verbose": true,
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
}
},
"module": "index.es.js",
"jsnext:main": "index.es.js",
"types": "index.d.ts",
"homepage": "https://github.com/FortAwesome/vue-fontawesome",
"repository": {
"type": "git",
"url": "https://github.com/FortAwesome/vue-fontawesome.git"
},
"contributors": [
"Aaron Parker <github.com/parkeyparker>",
"Brandon Mork <github.com/brandon-mork>",
"btaens <github.com/btaens>",
"David Driscoll <github.com/david-driscoll>",
"Liu Xinyu <github.com/meteorlxy>",
"Michael Cozzolino <https://github.com/michaelcozzolino>",
"Okke Tijhuis <github.com/otijhuis>",
"Romain Failla <https://github.com/rigma>",
"SirLamer <github.com/SirLamer>",
"Tyranteon <github.com/tyranteon>",
"Vinicius Rangel <github.com/viniciuslrangel>",
"Xaver Schulz <github.com/schulz3000>",
"Yannick Ihmels <github.com/ihmels>",
"Brian Talbot <https://github.com/talbs>",
"Jason Lundien <https://github.com/jasonlundien>",
"Mike Wilkerson <https://github.com/mlwilkerson>",
"Rob Madole <[email protected]>",
"Travis Chase <[email protected]>"
],
"license": "MIT",
"scripts": {
"build": "rollup -c rollup.config.js",
"dist": "cross-env NODE_ENV=production npm run build",
"test": "jest --silent",
"prepack": "npm run dist"
},
"lint-staged": {
"README.md": [
"markdown-toc -i",
"git add"
]
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "~1 || ~6",
"vue": ">= 3.0.0 < 4"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-external-helpers": "^7.17.12",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-json-strings": "^7.17.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.18.2",
"@fortawesome/fontawesome-svg-core": "~6",
"@fortawesome/free-solid-svg-icons": "^6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@vue/test-utils": "^2.0.0-beta.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^28.1.1",
"concurrently": "^7.2.1",
"cross-env": "^7.0.3",
"humps": "^2.0.1",
"husky": "^8.0.1",
"install": "^0.13.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": "^13.0.0",
"markdown-toc": "^1.2.0",
"npm": "^10.2.2",
"prettier": "^3.0.3",
"rollup": "^2.75.6",
"vue": "^3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}