This repository has been archived by the owner on Nov 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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
{
"name": "@target-corp/react-native-svg-parser",
"version": "1.0.6",
"description": "parses SVG/XML format and converts to react-native-svg elements",
"main": "lib/parser.js",
"scripts": {
"lint": "standard",
"lint-fix": "standard --fix",
"test": "jest --verbose --coverage",
"build": "rm -rf lib && babel src --out-dir lib --ignore *.test.js --source-maps",
"ci": "npm test && npm run lint && npm run build",
},
"repository": {
"type": "git",
"url": "[email protected]/target/react-native-svg-parser.git"
},
"keywords": [
"react",
"react-native",
"react-native-svg",
"svg"
],
"bugs": {
"url": "https://github.com/target/react-native-svg-parser/issues"
},
"author": "Aaron Decker <[email protected]>",
"contributors": [
"Bob Schultz <[email protected]>"
],
"license": "MIT",
"dependencies": {
"camelcase": "^5.0.0",
"css-parse-no-fs": "^2.0.0",
"xmldom": "^0.1.27"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-preset-react-native": "^4.0.0",
"jest": "^23.5.0",
"regenerator-runtime": "^0.12.1",
"standard": "^11.0.1"
},
"peerDependencies": {
"react": "*",
"react-native-svg": "^6.0.0",
"react-native": ">=0.50.0"
},
"jest": {
"preset": "react-native",
"automock": false,
"testPathIgnorePatterns": [
"node_modules",
"fixtures.test.js"
]
},
"standard": {
"parser": "babel-eslint",
"env": [
"jest",
"es6",
"react-native"
]
},
"nativePackage": true
}