This repository has been archived by the owner on Aug 18, 2024. It is now read-only.
forked from airbnb/babel-plugin-inline-react-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
{
"name": "babel-plugin-react-inline-svg",
"version": "1.0.2",
"description": "A babel plugin that optimizes and inlines SVGs for your react components.",
"main": "lib/index.js",
"scripts": {
"test": "npm run tests-only",
"pretests-only": "npm run build",
"tests-only": "babel-node test/sanity.js",
"build": "babel src --out-dir lib",
"lint": "eslint src/",
"prepublish": "npm run build",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trainbird/babel-plugin-inline-react-svg.git"
},
"keywords": [
"babel",
"plugin",
"react",
"svg",
"inline"
],
"author": "Fabian Jordan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Trainbird/babel-plugin-inline-react-svg/issues"
},
"homepage": "https://github.com/Trainbird/babel-plugin-inline-react-svg#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-preset-airbnb": "^3.0.1",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"react": "^15.3.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/parser": "^7.0.0",
"lodash.isplainobject": "^4.0.6",
"promise-synchronizer": "^1.0.6",
"resolve": "^1.8.1",
"svgo": "^1.0.3"
}
}