forked from gregberge/svgr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.36 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
{
"name": "svgr",
"description": "Convert raw SVG into React components.",
"version": "1.10.0",
"main": "lib/index.js",
"repository": "[email protected]:smooth-code/svgr.git",
"author": "Greg Bergé <[email protected]>",
"keywords": [
"svg",
"h2x",
"react",
"component",
"svg2react",
"svg-to-react"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.49",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"codecov": "^3.0.2",
"conventional-github-releaser": "^2.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"jest": "^23.0.1",
"memory-fs": "^0.4.1",
"react": "^16.4.0",
"standard-version": "^4.4.0",
"webpack": "^4.9.1"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.49",
"@babel/plugin-transform-react-constant-elements": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-react": "^7.0.0-beta.49",
"chalk": "^2.4.1",
"commander": "^2.15.1",
"glob": "^7.1.2",
"h2x-core": "^1.0.0",
"h2x-plugin-jsx": "^1.0.0",
"loader-utils": "^1.1.0",
"lodash": "^4.17.10",
"mz": "^2.6.0",
"output-file-sync": "^2.0.1",
"prettier": "^1.13.0",
"recursive-readdir": "^2.2.2",
"svgo": "^1.0.5"
},
"bin": {
"svgr": "./bin/svgr"
},
"jest": {
"rootDir": "src",
"coverageDirectory": "./coverage/",
"watchPathIgnorePatterns": [
"<rootDir>/__fixtures__"
],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/__fixtures__/**",
"!**/__snapshots__/**"
]
},
"scripts": {
"dev": "babel --watch src -d lib",
"build": "rm -rf lib/ && NODE_ENV=production babel src -d lib",
"ci": "yarn lint && yarn build && yarn test",
"format": "prettier --write \"src/**/*.js\" \"*.md\"",
"lint": "eslint .",
"release": "yarn build && standard-version && conventional-github-releaser --preset angular",
"clear": "rm -rf __fixtures_build__ lib",
"test": "jest --runInBand --coverage && codecov",
"prepublishOnly": "yarn run build"
}
}