-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.45 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
{
"name": "@zebra-fed/zeta-icons",
"version": "0.8.0",
"type": "module",
"main": "index.js",
"types": "dist/index.d.ts",
"files": [
"index.css",
"dist/index.*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.10.0",
"@figma/code-connect": "^1.1.4",
"@types/chai": "^4.3.16",
"@types/md5": "^2.3.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@types/react": "^18.3.11",
"@types/sinon": "^17.0.3",
"chai": "^5.1.0",
"cheerio": "^1.0.0",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"md5": "^2.3.0",
"mocha": "^10.4.0",
"oslllo-svg-fixer": "^3.0.0",
"prettier": "^3.3.3",
"scale-that-svg": "^1.0.6",
"sharp": "^0.33.3",
"sinon": "^17.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"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": {
"test": "tsc -p tsconfig.test.json && mocha dist/test/**/*.test.js -g fetchIcons -i --file ./test/setup.js --timeout 100000",
"test:build": "tsc -p tsconfig.test.json && mocha dist/test/**/*.test.js -g fetchIcons --timeout 100000",
"test:connect": "tsc -p tsconfig.test.json && mocha dist/test/code-connect/**/*.test.js --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"
}