-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.6 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
{
"name": "@zebra-fed/zeta-icons",
"version": "0.9.3",
"type": "module",
"lastUpdated": "12 Dec 2024, 14:01:46",
"main": "index.js",
"types": "dist/index.d.ts",
"files": [
"index.css",
"dist/index.*s",
"dist/types.*s",
"dist/outputs",
"outputs/web",
"outputs/icons",
"outputs/icon-manifest.json",
"CHANGELOG.md"
],
"exports": {
".": "./dist/index.js",
"./icon-manifest.json": "./outputs/icon-manifest.json",
"./icons/*": "./outputs/icons/*",
"./font/*": "./outputs/web/*",
"./index.css": "./index.css"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@figma/code-connect": "^1.2.2",
"@types/chai": "^5.0.1",
"@types/md5": "^2.3.5",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/sinon": "^17.0.3",
"chai": "^5.1.2",
"chai-xml": "^0.4.1",
"cheerio": "^1.0.0",
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"md5": "^2.3.0",
"mocha": "^11.0.1",
"oslllo-svg-fixer": "^5.0.0",
"prettier": "^3.4.2",
"scale-that-svg": "^1.0.6",
"sharp": "^0.33.5",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"webfont": "^11.2.26",
"zeta-icon-name-checker": "^0.0.15"
},
"keywords": [
"zeta",
"icon",
"library",
"svg"
],
"author": "Zebra Technologies - Innovation & Design - Front-end Development Team",
"license": "MIT",
"description": "The icon library for Zebra Technologies' Zeta Design System.",
"scripts": {
"pretest": "tsc -p tsconfig.test.json",
"pretest:build": "tsc -p tsconfig.test.json",
"pretest:connect": "tsc -p tsconfig.test.json",
"test": "mocha test/**/*.test.ts -g fetchIcons -i --file ./test/setup.ts --timeout 100000",
"test:build": "mocha test/**/*.test.ts -g fetchIcons --timeout 100000",
"test:connect": "mocha test/code-connect/**/*.test.ts --timeout 100000",
"build": "npx tsc -p tsconfig.build.json",
"build:fetch-icons": "npx tsc -p tsconfig.scripts.json",
"fetch-icons": "npm run build:fetch-icons && node --env-file=.env ./.github/fetch_icons/index.js",
"regenerate-test-files": "ts-node ./test/regenerateTestFiles.ts",
"prepack": "npm run build",
"format-connect-files": "prettier outputs/code-connect/*.figma.ts --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zebratechnologies/zeta-icons.git"
},
"bugs": {
"url": "https://github.com/zebratechnologies/zeta-icons/issues"
},
"homepage": "https://github.com/zebratechnologies/zeta-icons#readme"
}