forked from styled-icons/styled-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.9 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
{
"name": "styled-icons",
"version": "0.1.0",
"description": "Material Design Icons and Octicons available as Styled Components",
"author": "Jacob Gillespie <[email protected]>",
"homepage": "https://github.com/jacobwgillespie/styled-icons",
"repository": "git://github.com/jacobwgillespie/styled-icons.git",
"license": "MIT",
"main": "index.js",
"typings": "./index.d.ts",
"sideEffects": false,
"files": [
"material",
"octicons",
"CHANGELOG.md",
"index.d.ts",
"index.js",
"LICENSE",
"package.json",
"README.md"
],
"keywords": [
"styled-components",
"icons",
"material-ui",
"material",
"octicons"
],
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"scripts": {
"build": "node generate/generate.js",
"build-website": "NODE_ENV=production parcel build --out-dir build/website website/index.html",
"clean": "rm -rf build material octicons index.d.ts index.js",
"dev-website": "parcel --out-dir build/website website/index.html",
"serve-website": "serve build/website"
},
"peerDependencies": {
"react": "*",
"styled-components": ">=3 <4"
},
"devDependencies": {
"@types/node": "^9.6.5",
"@types/react": "^16.3.11",
"@types/react-dom": "^16.0.5",
"copy-to-clipboard": "^3.0.8",
"execa": "^0.10.0",
"fast-case": "^1.1.0",
"fast-glob": "^2.2.0",
"fs-extra": "^5.0.0",
"h2x-core": "^0.1.9",
"h2x-plugin-jsx": "^0.1.9",
"material-design-icons": "^3.0.1",
"number-to-words": "^1.2.3",
"octicons": "^7.2.0",
"ora": "^2.0.0",
"parcel-bundler": "^1.7.1",
"prettier": "^1.12.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-pose": "^1.5.2",
"serve": "^6.5.5",
"styled-components": "^3.2.5",
"svgo": "^1.0.5",
"typescript": "^2.8.1"
}
}