forked from blueberryapps/react-svg-icon-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.77 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.77 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
{
"name": "react-svg-icon-generator-fork",
"version": "1.0.2",
"description": "Generate React Icon Component from SVG icons to show, resize and recolor them.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"test": "mocha",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/nutgaard/react-svg-icon-generator.git"
},
"keywords": [
"react",
"react-native",
"svg",
"icon"
],
"author": "Blueberry, Ondrej Bartas",
"license": "MIT",
"bugs": {
"url": "https://github.com/nutgaard/react-svg-icon-generator/issues"
},
"homepage": "https://github.com/nutgaard/react-svg-icon-generator",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.0.5",
"escope": "^3.3.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "15.0.2",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"expect": "^21.0.2",
"express": "^4.15.4",
"gulp": ">=3",
"mocha": "^3.5.2",
"prop-types": "^15.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"rimraf": "^2.3.4",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"bluebird": "^3.3.4",
"invariant": "^2.0.0",
"nunjucks": "^3.0.1",
"svgo": "^0.7.2",
"yargs": "^8.0.2"
},
"peerDependency": {
"gulp": ">=3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"prop-types": "^15.0.0"
}
}