forked from dfdeagle47/react-inlinesvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.96 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
73
74
75
76
77
78
79
80
{
"name": "react-inlinesvg",
"version": "0.5.8",
"description": "An SVG loader for React",
"repository": {
"type": "git",
"url": "git://github.com/matthewwithanm/react-inlinesvg.git"
},
"keywords": [
"react-component",
"react",
"svg",
"component"
],
"author": "Matthew Dapena-Tretter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthewwithanm/react-inlinesvg/issues"
},
"main": "./lib/index.js",
"dependencies": {
"httpplease": "^0.16",
"once": "^1.4",
"fbjs": "^0.8"
},
"devDependencies": {
"babel-core": "^6.17",
"babel-eslint": "^7.0",
"babel-plugin-add-module-exports": "^0.2",
"babel-plugin-rewire": "1.0.0",
"babel-preset-es2015": "^6.16",
"babel-preset-react": "^6.16",
"babel-preset-stage-1": "^6.16",
"babel-register": "^6.16",
"babelify": "^7.3",
"browserify": "^13.1",
"browserify-shim": "^3.8",
"cors": "^2.8",
"enzyme": "^2.4",
"eslint": "^3.7",
"eslint-config-airbnb": "^12.0",
"eslint-plugin-import": "^2.0",
"eslint-plugin-jsx-a11y": "^2.2",
"eslint-plugin-react": "^6.3",
"expect": "^1.20",
"gulp": "^3.9",
"gulp-babel": "^6.1",
"gulp-bump": "^2.4",
"gulp-connect": "^5.0",
"gulp-load-plugins": "^1.3",
"gulp-rename": "^1.2",
"gulp-util": "^3.0",
"jsdom": "^9.6",
"mocha": "^3.1",
"react": "^15.3",
"react-addons-test-utils": "^15.3",
"react-dom": "^15.3",
"vinyl-source-stream": "^1.1"
},
"peerDependencies": {
"react": "^0.14 || ^15.0"
},
"scripts": {
"build": "gulp build",
"test": "gulp test-server & mocha --compilers js:babel-register; kill %1",
"lint": "eslint -c ./.eslintrc $(find src -name '*.js')",
"prepublish": "npm run build"
},
"browserify": {
"transform": [
[
"babelify",
{
"ignore": "/bower_components/",
"sourceMapRelative": "."
}
]
]
}
}