forked from airbnb/babel-plugin-inline-react-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.46 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
{
"name": "babel-plugin-inline-react-svg",
"version": "2.0.2",
"description": "A babel plugin that optimizes and inlines SVGs for your react components.",
"main": "lib/index.js",
"scripts": {
"prepack": "npmignore --auto --commentLines=autogenerated",
"prepublishOnly": "npm run build && safe-publish-latest",
"prepublish": "not-in-publish || npm run prepublishOnly",
"pretest": "npm run lint",
"lint": "eslint --ext=js,mjs .",
"pretests-only": "npm run build",
"build": "babel src --out-dir lib",
"test": "npm run tests-only",
"tests-only": "babel-node test/sanity.js",
"posttest": "aud --production",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kesne/babel-plugin-inline-react-svg.git"
},
"keywords": [
"babel",
"plugin",
"react",
"svg",
"inline"
],
"author": "Jordan Gensler <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kesne/babel-plugin-inline-react-svg/issues"
},
"homepage": "https://github.com/kesne/babel-plugin-inline-react-svg#readme",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.0.0",
"@babel/node": "^7.22.19",
"@babel/plugin-transform-typescript": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"aud": "^2.0.4",
"auto-changelog": "^2.4.0",
"babel-preset-airbnb": "^3.3.2",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"in-publish": "^2.0.1",
"npmignore": "^0.3.1",
"react": "^15.3.1",
"safe-publish-latest": "^2.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/parser": "^7.0.0",
"lodash.isplainobject": "^4.0.6",
"resolve": "^2.0.0-next.5",
"svgo": "^2.8.0"
},
"engines": {
"node": ">=10.13"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false,
"hideCredit": true
},
"publishConfig": {
"ignore": [
"!lib",
"src",
".github/workflows"
]
}
}