forked from emotion-icons/emotion-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.3 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "emotion-icons",
"version": "1.0.0",
"description": "Font Awesome, Material Icons, and Octicons available as Emotion Components",
"author": "Josh Rosenstein <jrosenstein6@gmail.com>",
"homepage": "https://github.com/joshrosenstein/emotion-icons",
"repository": "git://github.com/joshrosenstein/emotion-icons.git",
"license": "MIT",
"main": "index.js",
"module": "index.js",
"jsnext:main": "index.js",
"sideEffects": false,
"files": [
"/boxicons-regular",
"/boxicons-solid",
"/fa-brands",
"/fa-regular",
"/fa-solid",
"/feather",
"/material",
"/octicons",
"/ion-ios",
"/ion-md",
"/simpleIcons",
"/CHANGELOG.md",
"/index.cjs.js",
"/index.js",
"/LICENSE",
"/package.json",
"/README.md",
"/createIcon.js",
"/createIcon.cjs.js",
"/manifest.json"
],
"keywords": [
"styled-components",
"emotion",
"icons",
"font-awesome",
"feather-icons",
"material-ui",
"material",
"octicons",
"svg"
],
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"scripts": {
"start:docz": "docz dev",
"docz:build": "docz build",
"generate": "node scripts/generate.js",
"generate:manifest": "node scripts/generateManifest.js",
"generate:sample": "node scripts/generateSample.js",
"build": "yarn run clean && yarn run build:es",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir . --ignore *.spec.js,*.test.js --quiet ",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir ./build/srccjs/ --ignore *.spec.js,*.test.js --quiet ",
"clean": "rimraf build fa-brands fa-regular fa-solid material octicons boxicons-solid boxicons-regular simpleIcons ion-ios ion-md feather manifest.json createIcon.js createIcon.cjs.js index.cjs.js index.js",
"clean:modules": "rimraf node_modules"
},
"peerDependencies": {
"@emotion/core": "10.x",
"@emotion/styled": "10.x",
"emotion": "10.x",
"react": "15.x || 16.x"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@emotion/core": "^10.0.4",
"@emotion/styled": "^10.0.4",
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-brands-svg-icons": "^5.3.1",
"@fortawesome/free-regular-svg-icons": "^5.3.1",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@roseys/docz-theme": "^1.0.1",
"acorn": "5.7.3",
"acorn-jsx": "4.1.1",
"babel-eslint": "^10.0.1",
"babel-preset-minify": "^0.5.0",
"boxicons": "^1.7.1",
"copy-to-clipboard": "^3.0.8",
"cross-env": "^5.2.0",
"docz": "^0.12.5",
"emotion": "^10.0.4",
"execa": "^0.10.0",
"fast-glob": "^2.2.0",
"feather-icons": "^4.7.3",
"fs-extra": "^6.0.0",
"fuse.js": "^3.2.1",
"h2x-core": "^1.1.1",
"h2x-plugin-jsx": "^1.2.0",
"ionicons": "^4.4.4",
"material-design-icons": "^3.0.1",
"number-to-words": "^1.2.3",
"octicons": "^8.1.0",
"ora": "^2.0.0",
"prettier": "^1.13.0",
"react-virtualized": "^9.21",
"rimraf": "^2.6.2",
"simple-icons": "^1.6.4",
"svgo": "^1.0.5"
},
"dependencies": {}
}