forked from KyleAMathews/react-icon-factory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.74 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
{
"name": "react-icon-factory",
"description": "Simply add icon SVGs and the react icon factory will manufacture a custom icon component!",
"version": "2.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"bugs": {
"url": "https://github.com/KyleAMathews/react-icon-factory/issues"
},
"dependencies": {
"object-assign": "^2.0.0"
},
"devDependencies": {
"chai": "^2.2.0",
"cjsx-loader": "^2.0.1",
"coffee-loader": "^0.7.2",
"coffee-react": "^3.0.1",
"coffee-script": "^1.9.1",
"css-loader": "^0.9.1",
"gulp": "^3.8.11",
"mocha": "^2.2.1",
"mocha-unfunk-reporter": "^0.4.0",
"pre-commit": "^1.0.6",
"react": "^0.13.1",
"react-headroom": "^1.5.1",
"react-hot-loader": "^1.2.4",
"react-responsive-grid": "^0.1.0",
"style-loader": "^0.9.0",
"typography": "^0.1.0",
"underscore": "^1.8.2",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.8.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"homepage": "https://github.com/KyleAMathews/react-icon-factory",
"keywords": [
"icon",
"icons",
"react",
"react-component",
"svg"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"react": ">0.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/KyleAMathews/react-icon-factory.git"
},
"scripts": {
"test": "node_modules/.bin/coffeelint test/* & NODE_ENV=test node_modules/.bin/mocha --recursive --compilers coffee:coffee-script/register -R mocha-unfunk-reporter",
"test-watch": "NODE_ENV=test node_modules/.bin/mocha -w --recursive --compilers coffee:coffee-script/register -R mocha-unfunk-reporter",
"watch": "./node_modules/.bin/webpack-dev-server --hot"
}
}