forked from sairion/svg-inline-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "svg-inline-react",
"version": "3.0.0",
"description": "Inline SVG wrapper component for React",
"main": "lib/index.js",
"jsnext:main": "lib/index.js",
"scripts": {
"test": "karma start",
"clean": "rimraf ./lib",
"prebuild": "npm run clean",
"build": "gulp",
"prepublish": "npm run build"
},
"author": "Jaeho Lee <me@jaeholee.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:sairion/svg-inline-react.git"
},
"keywords": [
"svg",
"react"
],
"bugs": {
"url": "https://github.com/sairion/svg-inline-react/issues"
},
"homepage": "https://github.com/sairion/svg-inline-react",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.2",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"react": "^15.5.4",
"react-dom": "^0.14.0 || ^15.0.0",
"rimraf": "^2.6.1",
"svg-inline-loader": "^0.4.1",
"webpack": "^1.12.14"
},
"dependencies": {
"prop-types": "^15.5.0"
},
"engines": {
"node": ">=4"
}
}