This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
{
"name": "@teamleader/ui-icons",
"description": "Teamleader UI icons",
"version": "2.9.0",
"author": "Teamleader <development@teamleader.eu> (https://www.teamleader.eu)",
"bugs": {
"url": "https://github.com/teamleadercrm/ui-icons/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.16.9",
"@balajmarius/svg2jsx": "^2.0.0",
"bluebird": "^3.5.1",
"cheerio": "^1.0.0-rc.2",
"cli-color": "^2.0.0",
"fs-extra": "^10.0.0",
"glob": "^8.0.1",
"lodash": "^4.17.14",
"prettier": "^2.0.2"
},
"engines": {
"node": ">=12",
"npm": ">=6.9.0"
},
"homepage": "https://github.com/teamleadercrm/ui-icons#readme",
"keywords": [
"icons",
"teamleader",
"ui"
],
"license": "MIT",
"main": "cjs/index.js",
"module": "es/index.js",
"files": [
"cjs",
"es",
"icons"
],
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/teamleadercrm/ui-icons.git"
},
"scripts": {
"build": "yarn build:es; yarn build:cjs",
"build:cjs": "NODE_ENV=cjs babel lib --out-dir cjs",
"build:es": "NODE_ENV=es babel lib --out-dir es",
"lint": "yarn lint:src; yarn lint:lib",
"lint:fix": "yarn lint:src:fix; yarn lint:lib:fix",
"lint:lib": "prettier \"lib/*.js\"",
"lint:lib:fix": "prettier --write \"lib/*.js\"",
"lint:src": "prettier \"{bin,src}/*.js\"",
"lint:src:fix": "prettier --write \"{bin,src}/*.js\"",
"prebuild": "node ./bin/create && yarn lint:lib:fix",
"prepare": "yarn build"
},
"sideEffects": false
}