This repository was archived by the owner on Dec 11, 2019. It is now read-only.
forked from gilbarbara/react-inlinesvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.4 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@bellhops/react-inlinesvg",
"version": "0.7.0",
"description": "An SVG loader for React",
"repository": {
"type": "git",
"url": "git://github.com/matthewwithanm/react-inlinesvg.git"
},
"keywords": [
"react",
"react-component",
"component",
"svg"
],
"author": "Matthew Dapena-Tretter <m@tthewwithanm.com>",
"contributors": [
{
"name": "Gil Barbara",
"email": "gilbarbara@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/matthewwithanm/react-inlinesvg/issues"
},
"main": "./lib/index.js",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"prop-types": "^15.0.0"
},
"dependencies": {
"@bellhops/httpplease": "^0.16",
"once": "^1.4.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"browserify-shim": "^3.8.14",
"cors": "^2.8.4",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-bump": "^2.8.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.8",
"husky": "^0.14.3",
"jest-cli": "^21.2.1",
"jest-enzyme": "^4.0.1",
"jsdom": "^11.3.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"build": "gulp build",
"serve": "gulp test-server",
"test": "npm run serve & jest --config config/jest.config.js --bail --coverage; kill %1",
"test:watch": "jest --config config/jest.config.js --watch",
"lint": "eslint -c ./.eslintrc $(find src -name '*.js')",
"precommit": "npm run lint && npm test",
"prepublish": "npm run build"
},
"browserify": {
"transform": [
[
"babelify",
{
"ignore": "/bower_components/",
"sourceMapRelative": "."
}
]
]
}
}