-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.54 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
{
"name": "react-show-svg",
"version": "1.0.0",
"description": "Simple react component that transforms plain svg to usable icon.",
"author": "Josip Sokec <josip@sokec.net>",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/reactor-studio/react-show-svg.git"
},
"bugs": {
"url": "https://github.com/reactor-studio/react-show-svg/issues"
},
"homepage": "https://github.com/reactor-studio/react-show-svg",
"scripts": {
"test": "jest",
"test --u": "jest --u",
"start": "webpack --watch",
"build": "babel src -d dist",
"publish": "npm run build && np"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/setupTest.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
],
"verbose": false,
"moduleDirectories": [
"node_modules",
"src"
]
},
"dependencies": {
"svg-to-jsx": "git+https://github.com/reactor-studio/svg-to-jsx.git"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "^3.3.3",
"jest": "22.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"peerDependencies": {
"react": "16.2.0",
"svg-inline-loader": "^0.8.0"
}
}