forked from gregberge/svgr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "svgr",
"description": "Convert raw SVG into React components.",
"version": "0.1.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": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"codecov": "^2.3.0",
"conventional-github-releaser": "^1.1.12",
"conventional-recommended-bump": "^1.0.1",
"eslint": "^4.6.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^20.0.4",
"mversion": "^1.10.1"
},
"dependencies": {
"chalk": "^2.1.0",
"commander": "^2.11.0",
"glob": "^7.1.2",
"h2x-core": "^0.1.6",
"h2x-plugin-jsx": "^0.1.6",
"lodash": "^4.17.4",
"mz": "^2.6.0",
"output-file-sync": "^2.0.0",
"prettier": "^1.6.1",
"recursive-readdir": "^2.2.1",
"svgo": "^0.7.2"
},
"jest": {
"rootDir": "src",
"coverageDirectory": "./coverage/"
},
"scripts": {
"build": "rm -rf lib/ && NODE_ENV=production babel src -d lib",
"ci": "yarn lint && yarn test",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint .",
"release": "mversion `conventional-recommended-bump -p angular` -m",
"test": "jest --runInBand --coverage && codecov",
"prepublish": "yarn run build"
}
}