-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 859 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 859 Bytes
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
{
"name": "iconify-tools",
"description": "Collection of functions for cleaning up and parsing SVG for Iconify project",
"author": "Vjacheslav Trushkin",
"license": "MIT",
"private": true,
"type": "module",
"bugs": "https://github.com/iconify/tools/issues",
"homepage": "https://github.com/iconify/tools",
"repository": {
"type": "git",
"url": "git://github.com/iconify/tools.git"
},
"workspaces": [
"@iconify/*",
"@debug/*",
"@iconify-demo/*"
],
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm recursive run build",
"test": "pnpm recursive run test",
"lint": "pnpm recursive run lint",
"build:tools": "pnpm recursive --filter \"./@iconify/tools\" run build",
"test:tools": "pnpm recursive --filter \"./@iconify/tools\" run test:ci",
"lint:tools": "pnpm recursive --filter \"./@iconify/tools\" run lint"
}
}