-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
91 lines (91 loc) · 2.16 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
85
86
87
88
89
90
91
{
"name": "svgs",
"version": "4.2.0",
"description": "svgs is a compatiblity layer between svg and react-native-svg",
"main": "./lib",
"browser": "./lib",
"module": "./index",
"react-native": "./index",
"types": "./index.d.ts",
"scripts": {
"test:web": "mocha --require setup-env test/*.test.js",
"test": "nyc --reporter=text --reporter=json-summary npm run test:web",
"lint": "eslint-godaddy-react index.js index.native.js test/*.js",
"build": "rm -rf ./lib && babel ./index.js -d ./lib",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/godaddy/svgs"
},
"keywords": [
"svg",
"react-native",
"svgs",
"compatiblity",
"element",
"react"
],
"dependencies": {
"prop-types": "^15.7.2",
"rip-out": "^1.0.0"
},
"peerDependencies": {
"react": "*",
"react-native-svg": "*"
},
"peerDependenciesMeta": {
"react-native-svg": {
"optional": true
}
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.15.3",
"assume": "^2.3.0",
"coveralls": "^3.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.32.0",
"eslint-config-godaddy-react": "^7.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-react": "^7.25.1",
"jsdom": "^17.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"react": "^16.2.0",
"react-dom": "^17.0.2",
"react-native-svg": "^7.0.3",
"setup-env": "^1.2.3"
},
"author": "GoDaddy Operating Company, LLC",
"contributors": [
"Arnout Kazemier"
],
"license": "MIT",
"babel": {
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
],
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"browserify": {
"transform": [
"babelify"
]
},
"nyc": {
"exclude": [
"index.d.ts"
]
}
}