-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
{
"name": "@justeat/f-vue-icons",
"version": "3.14.2",
"main": "dist/index.cjs",
"maxBundleSize": "155kB",
"module": "esm/index.mjs",
"files": [
"dist",
"icons",
"esm"
],
"exports": {
".": {
"import": "./esm/index.mjs",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"homepage": "https://github.com/justeat/fozzie-components/tree/master/packages/tools/f-vue-icons",
"contributors": [
"Github contributors <https://github.com/justeat/fozzie-components/graphs/contributors>"
],
"repository": {
"type": "git",
"url": "[email protected]:justeat/fozzie-components.git"
},
"bugs": {
"url": "https://github.com/justeat/fozzie-components/issues"
},
"license": "Apache-2.0",
"engines": {
"node": ">=14"
},
"keywords": [
"fozzie"
],
"scripts": {
"prepublishOnly": "yarn lint && yarn test && yarn build",
"clean": "run -T rimraf -rf ./icons/ ./dist/ ./esm/",
"build": "yarn clean && yarn build:icons && yarn build:dist",
"build:dist": "rollup -c",
"build:icons": "node build && babel src/components -d icons",
"lint": "eslint \"!(dist)/**/*.{js,vue}\"",
"lint:fix": "yarn lint --fix",
"test": "jest --passWithNoTests",
"ci:test:tools": "yarn test",
"example": "poi --serve --config example/poi.config.js",
"build:example": "poi --prod --config example/poi.config.js",
"prebuild:example": "yarn build:icons"
},
"browserslist": [
"extends @justeat/browserslist-config-fozzie"
],
"devDependencies": {
"@justeat/f-icons": "4.13.0",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.1.0",
"fs-extra": "9.0.1",
"lodash.kebabcase": "4.1.1",
"pascal-case": "3.1.2",
"prismjs": "1.27.0",
"rollup": "3.29.5"
},
"volta": {
"extends": "../../../package.json"
}
}