forked from iest/babel-plugin-inline-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 962 Bytes
/
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
{
"name": "babel-plugin-inline-svg",
"version": "1.1.1",
"description": "Babel plugin to optimize and inline SVG",
"repository": {
"url": "[email protected]:iest/babel-plugin-inline-svg.git",
"type": "git"
},
"author": "Iestyn Williams <[email protected]>",
"contributors": [
{
"name": "Jaime Pastor",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint . --ext .js --cache",
"test": "cross-env BABEL_ENV=test jest --config jest.config.js --colors --env node",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"babel-core": "^6.26.3",
"build-tools-babel": "1.2.0",
"build-tools-javascript": "1.2.0",
"build-tools-jest": "1.2.0",
"cross-env": "7.0.2",
"jest": "^26.0.1"
},
"dependencies": {
"babel-template": "^6.26.0",
"resolve-from": "^4.0.0",
"svgo": "^1.3.2"
}
}