forked from godaddy/svgs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.95 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
{
"name": "svgs",
"version": "4.0.0",
"description": "svgs is a compatiblity layer between svg and react-native-svg",
"main": "./lib",
"browser": "./lib",
"module": "./index",
"react-native": "./index",
"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.5.10",
"rip-out": "^1.0.0"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"assume": "^2.1.0",
"coveralls": "^3.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.17.0",
"eslint-config-godaddy-react": "^2.1.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^7.6.0",
"jsdom": "^11.6.2",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-native-svg": "^7.0.3",
"setup-env": "^1.2.1"
},
"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"
]
}
}